From eeb7aa4c7627a2110f1d8e683afb6fc0d1722c61 Mon Sep 17 00:00:00 2001 From: Georg Semmler Date: Mon, 31 May 2021 10:13:25 +0200 Subject: [PATCH] Workaround for https://github.com/rust-lang/rustup/issues/2759 in our CI --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c789dd86914d..5dd6e15585e5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -145,6 +145,10 @@ jobs: echo "MYSQL_EXAMPLE_DATABASE_URL=mysql://root@localhost/diesel_example" >> $GITHUB_ENV echo "MYSQL_UNIT_TEST_DATABASE_URL=mysql://root@localhost/diesel_unit_test" >> $GITHUB_ENV echo "MYSQLCLIENT_LIB_DIR=C:\tools\mysql\current\lib" >> $GITHUB_ENV + - name: Update Rustup (temporary workaround) + run: rustup self update + shell: bash + if: startsWith(matrix.os, 'windows') - name: Install rust toolchain uses: actions-rs/toolchain@v1