mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
1.72.1->1.73.0
This commit is contained in:
parent
93884e3a5e
commit
e6e708360c
7 changed files with 9 additions and 9 deletions
2
.github/workflows/windows_release_build.yml
vendored
2
.github/workflows/windows_release_build.yml
vendored
|
@ -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: |
|
||||||
|
|
4
.github/workflows/windows_tests.yml
vendored
4
.github/workflows/windows_tests.yml
vendored
|
@ -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: |
|
||||||
|
|
|
@ -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:
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[toolchain]
|
[toolchain]
|
||||||
channel = "1.72.1"
|
channel = "1.73.0"
|
||||||
|
|
||||||
profile = "default"
|
profile = "default"
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[toolchain]
|
[toolchain]
|
||||||
channel = "1.72.1"
|
channel = "1.73.0"
|
||||||
|
|
||||||
profile = "default"
|
profile = "default"
|
||||||
|
|
||||||
|
|
|
@ -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`
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue