Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/js-client-test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: JavaScript client tests

env:
RUST_VERSION: 1.90.0
RUST_VERSION: 1.91.0
RUST_BACKTRACE: 1

on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/server-test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Server test

env:
RUST_VERSION: 1.90.0
RUST_VERSION: 1.91.0

on:
pull_request:
Expand Down
4 changes: 2 additions & 2 deletions alpine.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ FROM messense/rust-musl-cross:${ARCH}-musl AS builder

ARG ARCH=x86_64
ARG APP_NAME=nittei
ARG RUST_VERSION=1.90.0
ARG RUST_VERSION=1.91.0

# Install and set the specific Rust version
RUN rustup install ${RUST_VERSION} && rustup default ${RUST_VERSION}
Expand All @@ -33,7 +33,7 @@ RUN cargo build --release --bin nittei-migrate --target ${ARCH}-unknown-linux-mu
cp ./target/${ARCH}-unknown-linux-musl/release/nittei-migrate /nittei-migrate

#Create a new stage with a minimal image
FROM alpine:3.22.0
FROM alpine:3.22.2

# Set the git repository url and commit hash for DD
ARG GIT_REPO_URL
Expand Down
4 changes: 2 additions & 2 deletions alpineWithDD.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ FROM messense/rust-musl-cross:${ARCH}-musl AS builder

ARG ARCH=x86_64
ARG APP_NAME=nittei
ARG RUST_VERSION=1.90.0
ARG RUST_VERSION=1.91.0

# Install and set the specific Rust version
RUN rustup install ${RUST_VERSION} && rustup default ${RUST_VERSION}
Expand Down Expand Up @@ -45,7 +45,7 @@ RUN ARCH_IN_URL=$(case "${ARCH}" in \
mv ddprof/bin/ddprof /ddprof

#Create a new stage with a minimal image
FROM alpine:3.22.0
FROM alpine:3.22.2

# Set the git repository url and commit hash for DD
ARG GIT_REPO_URL
Expand Down
2 changes: 1 addition & 1 deletion debian.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# docker buildx build -f debian.Dockerfile -t image:tag --build-arg='ARCH=x86_64' --platform linux/amd64 .
# docker buildx build -f debian.Dockerfile -t image:tag --build-arg='ARCH=aarch64' --platform linux/arm64 .

FROM rust:1.90.0-slim AS builder
FROM rust:1.91.0-slim AS builder

WORKDIR /app/nittei

Expand Down
2 changes: 1 addition & 1 deletion debianWithDD.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# docker buildx build -f debianWithDD.Dockerfile -t image:tag --build-arg='ARCH=x86_64' --platform linux/amd64 .
# docker buildx build -f debianWithDD.Dockerfile -t image:tag --build-arg='ARCH=aarch64' --platform linux/arm64 .

FROM rust:1.90.0-slim AS builder
FROM rust:1.91.0-slim AS builder

WORKDIR /app/nittei

Expand Down