1.72.1->1.73.0

This commit is contained in:
Anton-4 2024-04-06 15:38:14 +02:00
parent 93884e3a5e
commit e6e708360c
No known key found for this signature in database
GPG key ID: 0971D718C0A9B937
7 changed files with 9 additions and 9 deletions

View file

@ -30,7 +30,7 @@ jobs:
run: zig version run: zig version
- name: install rust nightly 1.72.0 - name: install rust nightly 1.72.0
run: rustup install nightly-2023-07-09 run: rustup install nightly-2023-08-20
- name: set up llvm 16 - name: set up llvm 16
run: | run: |

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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