https://gcc.gnu.org/g:043ce276e5eb421c087d329dab4cc790e2a0a060
commit 043ce276e5eb421c087d329dab4cc790e2a0a060 Author: Pierre-Emmanuel Patry <pierre-emmanuel.pa...@embecosm.com> Date: Thu Jul 18 11:01:55 2024 +0200 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.pa...@embecosm.com> Diff: --- .github/workflows/bootstrap.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/bootstrap.yml b/.github/workflows/bootstrap.yml index 4381e123ecaa..6b820a5047b6 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: |