Skip to content

Commit

Permalink
ci: update to rust 1.82
Browse files Browse the repository at this point in the history
  • Loading branch information
astraw committed Dec 17, 2024
1 parent 6f186b5 commit f2982f0
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
22 changes: 11 additions & 11 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ test_flydra2:
# cargo run --bin braid-offline-retrack -- -d ..\..\rust-cam-testing-data\20200622_111457.braid -o tmp

test_crates_rust_1_80:
image: rust:1.80
image: rust:1.82
script:
- apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y llvm-dev libclang-dev clang

Expand Down Expand Up @@ -294,21 +294,21 @@ test_crates_rust_1_80:
- cd ../..

test_crates_rust_nightly:
image: rust:1.80
image: rust:1.82
script:
- export RUSTFLAGS="-D warnings"

# Use known good nightly
- rustup update --no-self-update nightly-2024-07-25
- rustup update --no-self-update nightly-2024-12-14

# Test imops with nightly features
- cd imops
- cargo +nightly-2024-07-25 test --no-default-features --features std,simd
- cargo +nightly-2024-12-14 test --no-default-features --features std,simd
- cd ..

# Test fastfreeimage
- cd fastfreeimage
- cargo +nightly-2024-07-25 test --features portsimd
- cargo +nightly-2024-12-14 test --features portsimd
- cd ..

test_flydra_feature_detector:
Expand Down Expand Up @@ -375,7 +375,7 @@ led-box-standalone-ubuntu2004-deb:
name: "led-box-standalone-debs-${CI_COMMIT_SHA}"

build-freemovr-calibration:
image: rust:1.80
image: rust:1.82
script:
- export RUSTFLAGS="-D warnings"
- cd freemovr-calibration/freemovr-calibration-cli
Expand All @@ -390,7 +390,7 @@ build-freemovr-calibration:
name: "freemovr-cal-linux-${CI_COMMIT_SHA}"

build-freemovr-calibration-webapp:
image: rust:1.80
image: rust:1.82
script:
- export RUSTFLAGS="-D warnings"
- export PATH="$PATH:$CARGO_HOME/bin"
Expand Down Expand Up @@ -1221,7 +1221,7 @@ fmf-cli-ubuntu2204:
name: "fmf-cli-ubuntu2204-${CI_COMMIT_SHA}"

braid-webapps:
image: rust:1.80
image: rust:1.82
script:
- export RUSTFLAGS="-D warnings"

Expand Down Expand Up @@ -1359,7 +1359,7 @@ braid-ubuntu2204:
name: "braid-ubuntu2204-${CI_COMMIT_SHA}"

led-box-linux:
image: rust:1.80
image: rust:1.82
script:
- apt-get update
- DEBIAN_FRONTEND=noninteractive apt-get install -y libudev-dev
Expand All @@ -1375,7 +1375,7 @@ led-box-linux:
name: "led-box-linux-${CI_COMMIT_SHA}"

led-box-firmware:
image: rust:1.80
image: rust:1.82
script:
- rustc --version
- cd led-box-firmware
Expand Down Expand Up @@ -1570,7 +1570,7 @@ build_simple:
- cargo build --release

test_user_guide:
image: rust:1.80
image: rust:1.82
script:
- cd strand-braid-user/users-guide
- curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.18/mdbook-v0.4.18-x86_64-unknown-linux-gnu.tar.gz | tar -xz
Expand Down
2 changes: 1 addition & 1 deletion _packaging/setup-ubuntu-20.04.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ echo $ORIG_DIR
# Install nightly Rust. Use specific "known good" version of nightly because
# occasionally breakage happens.
cd /tmp
curl -O --show-error --fail --silent https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-init && chmod a+x rustup-init && ./rustup-init -y --default-toolchain nightly-2024-04-15
curl -O --show-error --fail --silent https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-init && chmod a+x rustup-init && ./rustup-init -y --default-toolchain nightly-2024-12-14

# Note: this is not a good general-purpose way to install wasm-pack, because it
# does not install wasm-bindgen. Instead, use the installer at
Expand Down
2 changes: 1 addition & 1 deletion _packaging/setup-ubuntu-22.04.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ echo $ORIG_DIR
# Install nightly Rust. Use specific "known good" version of nightly because
# occasionally breakage happens.
cd /tmp
curl -O --show-error --fail --silent https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-init && chmod a+x rustup-init && ./rustup-init -y --default-toolchain nightly-2024-04-15
curl -O --show-error --fail --silent https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-init && chmod a+x rustup-init && ./rustup-init -y --default-toolchain nightly-2024-12-14

# Note: this is not a good general-purpose way to install wasm-pack, because it
# does not install wasm-bindgen. Instead, use the installer at
Expand Down
2 changes: 1 addition & 1 deletion _packaging/setup-ubuntu-24.04.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ echo $ORIG_DIR
# Install nightly Rust. Use specific "known good" version of nightly because
# occasionally breakage happens.
cd /tmp
curl -O --show-error --fail --silent https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-init && chmod a+x rustup-init && ./rustup-init -y --default-toolchain nightly-2024-04-15
curl -O --show-error --fail --silent https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-init && chmod a+x rustup-init && ./rustup-init -y --default-toolchain nightly-2024-12-14

# Note: this is not a good general-purpose way to install wasm-pack, because it
# does not install wasm-bindgen. Instead, use the installer at
Expand Down

0 comments on commit f2982f0

Please sign in to comment.