Bump Rust version in reproducible build scripts

Now that we require 1.65, Rust 1.63 is no longer sufficient.
This commit is contained in:
Nick Mathewson 2023-04-13 07:31:20 -04:00
parent 99c64abb6a
commit a9b1d8f612
2 changed files with 2 additions and 2 deletions

View File

@ -192,7 +192,7 @@ build-repro:
- if: $CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_TAG != null
stage: build
# If you upgrade this image, also change the one in docker_reproducible_build
image: rust:1.63.0-alpine3.16
image: rust:1.68.2-alpine3.17
script:
- apk add bash
- ./maint/reproducible_build linux windows macos

View File

@ -12,5 +12,5 @@ set -euo pipefail
## If you change this image, make sure also to change the one listed in
## the build-repro job in .gitlab-ci.yml
exec docker run --rm -i -v "$(git rev-parse --show-toplevel)":/builds/arti \
-w /builds/arti --shm-size=512m rust:1.63.0-alpine3.16 \
-w /builds/arti --shm-size=512m rust:1.68.2-alpine3.17 \
sh -c "apk add bash && ./maint/reproducible_build $*"