From 2ac8a2e60a19313e41d7485fd84eb0e3ae8dbab4 Mon Sep 17 00:00:00 2001 From: jayzhan211 Date: Mon, 18 Mar 2024 15:54:23 +0800 Subject: [PATCH 1/2] suppress self update for window Signed-off-by: jayzhan211 --- .github/actions/setup-windows-builder/action.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/actions/setup-windows-builder/action.yaml b/.github/actions/setup-windows-builder/action.yaml index 9ab5c4a8b1bb..a928d70b37cc 100644 --- a/.github/actions/setup-windows-builder/action.yaml +++ b/.github/actions/setup-windows-builder/action.yaml @@ -38,8 +38,7 @@ runs: - name: Setup Rust toolchain shell: bash run: | - rustup update stable - rustup toolchain install stable + rustup toolchain install stable --no-self-update rustup default stable rustup component add rustfmt - name: Configure rust runtime env From aa8e1bf652d9061c5a8564946c4a8960a5d7c643 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Mon, 18 Mar 2024 14:21:33 -0400 Subject: [PATCH 2/2] Update .github/actions/setup-windows-builder/action.yaml --- .github/actions/setup-windows-builder/action.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/setup-windows-builder/action.yaml b/.github/actions/setup-windows-builder/action.yaml index a928d70b37cc..a26a34a3db93 100644 --- a/.github/actions/setup-windows-builder/action.yaml +++ b/.github/actions/setup-windows-builder/action.yaml @@ -38,6 +38,7 @@ runs: - name: Setup Rust toolchain shell: bash run: | + # Avoid self update to avoid CI failures: https://github.com/apache/arrow-datafusion/issues/9653 rustup toolchain install stable --no-self-update rustup default stable rustup component add rustfmt