From 65ca4e0d1ecb169904506a412de5deedd04ce899 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Tue, 18 May 2021 13:32:04 -0700 Subject: [PATCH] Add temporary fix for rustup on windows in CI. --- .github/workflows/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f4bd7f616f5..838bc03bb8d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -54,6 +54,10 @@ jobs: other: i686-pc-windows-gnu steps: - uses: actions/checkout@v2 + - name: Update Rustup (temporary workaround) + run: rustup self update + shell: bash + if: startsWith(matrix.os, 'windows') - run: rustup update --no-self-update ${{ matrix.rust }} && rustup default ${{ matrix.rust }} - run: rustup target add ${{ matrix.other }} - run: rustup component add rustc-dev llvm-tools-preview rust-docs