diff options
author | Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com> | 2024-07-18 11:01:55 +0200 |
---|---|---|
committer | P-E-P <32375388+P-E-P@users.noreply.github.com> | 2024-07-18 12:39:56 +0000 |
commit | 043ce276e5eb421c087d329dab4cc790e2a0a060 (patch) | |
tree | c01e8c6cde69aa72dc110cb9a345d506e63bde6f | |
parent | 0c2b03650fa64938203441aeb686ccfb29393491 (diff) | |
download | gcc-043ce276e5eb421c087d329dab4cc790e2a0a060.zip gcc-043ce276e5eb421c087d329dab4cc790e2a0a060.tar.gz gcc-043ce276e5eb421c087d329dab4cc790e2a0a060.tar.bz2 |
Fix CI bootstrap build with a nightly rust compiler
The CI failed to compile some recent code that requires a nightly
feature. This change allows the CI to use a nightly compiler instead.
ChangeLog:
* .github/workflows/bootstrap.yml: Install nightly rustc.
Signed-off-by: Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
-rw-r--r-- | .github/workflows/bootstrap.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/bootstrap.yml b/.github/workflows/bootstrap.yml index 4381e12..6b820a5 100644 --- a/.github/workflows/bootstrap.yml +++ b/.github/workflows/bootstrap.yml @@ -29,6 +29,7 @@ jobs: gcc-multilib \ g++-multilib \ dejagnu + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=nightly; - name: Configure run: | |