rust 1.73.0 -> 1.74.1

This commit is contained in:
Anton-4 2024-04-12 17:16:09 +02:00
parent 237bd942ed
commit 46daccef62
No known key found for this signature in database
GPG key ID: 0971D718C0A9B937
8 changed files with 11 additions and 11 deletions

View file

@ -32,7 +32,7 @@ jobs:
run: cargo run --locked --release format --check crates/compiler/builtins/roc
- name: ensure there are no unused dependencies
run: cargo +nightly-2023-08-20 udeps --all-targets
run: cargo +nightly-2023-10-01 udeps --all-targets
- name: zig wasm tests
run: cd crates/compiler/builtins/bitcode && ./run-wasm-tests.sh

View file

@ -29,8 +29,8 @@ jobs:
- name: zig version
run: zig version
- name: install rust nightly 1.72.0
run: rustup install nightly-2023-08-20
- name: install rust nightly 1.74.0
run: rustup install nightly-2023-10-01
- name: set up llvm 16
run: |

View file

@ -37,8 +37,8 @@ jobs:
cd crates\compiler\builtins\bitcode\
zig build test
- name: install rust nightly 1.73.0
run: rustup install nightly-2023-08-20
- name: install rust nightly 1.74.0
run: rustup install nightly-2023-10-01
- name: set up llvm 16
run: |

View file

@ -1,6 +1,6 @@
VERSION 0.6
FROM rust:1.73.0-slim-buster # make sure to update rust-toolchain.toml too so that everything uses the same rust version
FROM rust:1.74.1-slim-buster # make sure to update rust-toolchain.toml too so that everything uses the same rust version
WORKDIR /earthbuild
prep-debian:

View file

@ -526,7 +526,7 @@ pub fn rebuild_host(
// on windows, we need the nightly toolchain so we can use `-Z export-executable-symbols`
// using `+nightly` only works when running cargo through rustup
let mut cmd = rustup();
cmd.args(["run", "nightly-2023-08-20", "cargo"]);
cmd.args(["run", "nightly-2023-10-01", "cargo"]);
cmd
} else {

View file

@ -1,5 +1,5 @@
[toolchain]
channel = "1.73.0"
channel = "1.74.1"
profile = "default"

View file

@ -1,5 +1,5 @@
[toolchain]
channel = "1.73.0"
channel = "1.74.1"
profile = "default"

View file

@ -12,9 +12,9 @@
# - update nightly-OLD_DATE in .github/workflows/windows_release_build.yml
# - update nightly-OLD_DATE in crates/compiler/build/src/link.rs
channel = "1.73.0" # check ^^^ when changing this
channel = "1.74.1" # check ^^^ when changing this
#
# channel = "nightly-2023-08-20" # 1.73.0 nightly to be able to use unstable features
# channel = "nightly-2023-10-01" # 1.74.0 nightly to be able to use unstable features
profile = "default"
components = [
# for usages of rust-analyzer or similar tools inside `nix develop`