mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 04:08:19 +00:00
rust 1.73.0 -> 1.74.1
This commit is contained in:
parent
237bd942ed
commit
46daccef62
8 changed files with 11 additions and 11 deletions
2
.github/workflows/ubuntu_x86_64.yml
vendored
2
.github/workflows/ubuntu_x86_64.yml
vendored
|
@ -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
|
||||
|
|
4
.github/workflows/windows_release_build.yml
vendored
4
.github/workflows/windows_release_build.yml
vendored
|
@ -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: |
|
||||
|
|
4
.github/workflows/windows_tests.yml
vendored
4
.github/workflows/windows_tests.yml
vendored
|
@ -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: |
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[toolchain]
|
||||
channel = "1.73.0"
|
||||
channel = "1.74.1"
|
||||
|
||||
profile = "default"
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[toolchain]
|
||||
channel = "1.73.0"
|
||||
channel = "1.74.1"
|
||||
|
||||
profile = "default"
|
||||
|
||||
|
|
|
@ -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`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue