Skip to content

Commit 5d215e0

Browse files
committed
github: Remove nightly Rust installation
ChangeLog: * .github/workflows/ccpp.yml: Install Rust 1.72 instead of nightly. * .github/workflows/bootstrap.yml: Likewise.
1 parent 9de294a commit 5d215e0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/bootstrap.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
gcc-multilib \
3030
g++-multilib \
3131
dejagnu
32-
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=nightly;
32+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.72.0;
3333
3434
- name: Configure
3535
run: |

.github/workflows/ccpp.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
g++-multilib \
4343
dejagnu;
4444
# install Rust directly using rustup
45-
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=nightly;
45+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.72.0;
4646
4747
- name: Configure
4848
run: |
@@ -123,7 +123,7 @@ jobs:
123123
g++-multilib \
124124
dejagnu;
125125
# install Rust directly using rustup
126-
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=nightly;
126+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.72.0;
127127
128128
- name: Configure
129129
run: |
@@ -206,7 +206,7 @@ jobs:
206206
g++-4.8-multilib \
207207
dejagnu;
208208
# install Rust directly using rustup
209-
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=nightly;
209+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.72.0;
210210
211211
- name: Configure
212212
run: |
@@ -265,7 +265,7 @@ jobs:
265265
run: |
266266
brew install dejagnu mpfr libmpc gmp;
267267
# install Rust directly using rustup
268-
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=nightly;
268+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.72.0;
269269
270270
- name: Configure
271271
run: |

0 commit comments

Comments
 (0)