From 2d51809bd7f8f7936bb9c029e06fc58f8c81d67d Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Mon, 13 Jul 2020 12:33:30 +0900 Subject: [PATCH] Fix CI failure on Windows (#415) --no-self-update is necessary because the windows environment cannot self-update rustup.exe. --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 47952d94d..8b99832a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,7 +66,8 @@ jobs: steps: - uses: actions/checkout@v2 - name: Install Rust - run: rustup update stable && rustup default stable + # --no-self-update is necessary because the windows environment cannot self-update rustup.exe. + run: rustup update stable --no-self-update && rustup default stable - name: Test run: . ci/test-stable.sh test