From 97578029d5489888541d15becaf04878714bc2a5 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Wed, 16 Apr 2025 19:03:13 -0400 Subject: [PATCH] actions: install rust for win-arm64 --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f861d290..cd7e4c06 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -446,6 +446,11 @@ jobs: "${PYTHON}" -V "${PYTHON}" -c "import ssl; print(f'Using {ssl.OPENSSL_VERSION}')" + - name: Windows ARM Install rust and cargo + if: matrix.goal == 'build' && runner.os == 'Windows' && runner.arch == 'ARM64' && steps.cache-python-ssl.outputs.cache-hit != 'true' + run: | + choco install rust + - name: Upgrade pip, wheel, etc run: | curl $curl_retry -O https://bootstrap.pypa.io/get-pip.py