Skip to content

Commit 8efa450

Browse files
committed
feat: build the backend on stable Rust
1 parent 3dc4018 commit 8efa450

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ jobs:
1212
RUSTFLAGS: -Dwarnings
1313
steps:
1414
- uses: actions/checkout@v4
15-
# FIXME: use stable once rftrace supports stable
16-
- uses: dtolnay/rust-toolchain@nightly
15+
- uses: dtolnay/rust-toolchain@stable
1716
with:
1817
targets: x86_64-unknown-none
1918
- run: cargo clippy --all-features
@@ -45,9 +44,6 @@ jobs:
4544
sudo apt-get update
4645
sudo apt-get install uftrace
4746
- uses: mkroening/rust-toolchain-toml@main
48-
- uses: dtolnay/rust-toolchain@nightly
49-
with:
50-
components: llvm-tools
5147
- name: Build
5248
run: make
5349
- name: Run
@@ -71,7 +67,6 @@ jobs:
7167
run: |
7268
sudo apt-get update
7369
sudo apt-get install uftrace
74-
- uses: mkroening/rust-toolchain-toml@main
7570
- uses: dtolnay/rust-toolchain@nightly
7671
with:
7772
components: llvm-tools

rftrace/build.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ fn build_backend() {
3030
let target = "x86_64-unknown-none";
3131

3232
let mut cmd = cargo();
33-
cmd.arg("+nightly");
3433
cmd.arg("rustc");
3534

3635
cmd.args(["--target", target]);

rust-toolchain.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
[toolchain]
2-
channel = "nightly"
32
components = [
43
"llvm-tools-preview",
54
"rustfmt",

0 commit comments

Comments
 (0)