From: Pierre-Emmanuel Patry Date: Thu, 18 Jul 2024 09:01:55 +0000 (+0200) Subject: Fix CI bootstrap build with a nightly rust compiler X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=043ce276e5eb421c087d329dab4cc790e2a0a060;p=thirdparty%2Fgcc.git 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 --- 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: |