We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30d19dc commit e8a2408Copy full SHA for e8a2408
.github/actions/build-gcc/action.yml
@@ -38,10 +38,12 @@ runs:
38
gcc-multilib \
39
g++-multilib \
40
dejagnu;
41
- # install Rust directly using rustup
42
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.72.0;
43
shell: bash
44
+ - uses: dtolnay/rust-toolchain@stable
+ with:
45
+ toolchain: "1.72.0"
46
+
47
- name: Make Source Read-Only
48
run: chmod -R a-w ./*
49
@@ -62,7 +64,7 @@ runs:
62
64
run: |
63
65
cd gccrs-build; \
66
# Add cargo to our path quickly
- . "$HOME/.cargo/env";
67
+ # . "$HOME/.cargo/env";
68
make -Otarget -j $(nproc) 2>&1 | tee log
69
70
- name: Check for new warnings
0 commit comments