diff --git a/Dockerfile.decommission-local b/Dockerfile.decommission-local index 356db8d14..9272589d3 100644 --- a/Dockerfile.decommission-local +++ b/Dockerfile.decommission-local @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM rust:1.97-trixie +FROM rust:1.97.1-trixie RUN set -eux; \ export DEBIAN_FRONTEND=noninteractive; \ diff --git a/Dockerfile.source b/Dockerfile.source index 35dfa882f..e27e5ce34 100644 --- a/Dockerfile.source +++ b/Dockerfile.source @@ -32,7 +32,7 @@ ARG RUSTFS_BUILD_FEATURES="" # ----------------------------- # Build stage # ----------------------------- -FROM rust:1.97-trixie AS builder +FROM rust:1.97.1-trixie AS builder # Re-declare args after FROM ARG TARGETPLATFORM diff --git a/crates/ecstore/tests/README.md b/crates/ecstore/tests/README.md index cb7b2f807..0833a467d 100644 --- a/crates/ecstore/tests/README.md +++ b/crates/ecstore/tests/README.md @@ -20,5 +20,5 @@ Example: ```powershell $env:RUSTFS_MINIO_FIXTURE_ROOT = '.\rustfs\tmp\minio-fixture-lab-local-key' $env:RUSTFS_MINIO_STATIC_KMS_KEY_B64 = '' -cargo +1.96.0 test -p rustfs-ecstore --features rio-v2 --test minio_generated_read_test -- --ignored +cargo +1.97.1 test -p rustfs-ecstore --features rio-v2 --test minio_generated_read_test -- --ignored ``` diff --git a/crates/rio-v2/tests/README.md b/crates/rio-v2/tests/README.md index 3c69d8b28..83567c4f6 100644 --- a/crates/rio-v2/tests/README.md +++ b/crates/rio-v2/tests/README.md @@ -30,7 +30,7 @@ Or point the tests at another generated root: ```powershell $env:RUSTFS_MINIO_FIXTURE_ROOT = '.\rustfs\tmp\minio-fixture-lab-smoke' -cargo +1.96.0 test -p rustfs-rio-v2 --test minio_generated_fixtures -- --ignored +cargo +1.97.1 test -p rustfs-rio-v2 --test minio_generated_fixtures -- --ignored ``` ## Scope diff --git a/flake.nix b/flake.nix index 3b6393dbe..226c2f15e 100644 --- a/flake.nix +++ b/flake.nix @@ -30,7 +30,6 @@ systems = [ "x86_64-linux" "aarch64-linux" - "x86_64-darwin" "aarch64-darwin" ]; forAllSystems = nixpkgs.lib.genAttrs systems;