diff options
| author | Charles Harris <charlesr.harris@gmail.com> | 2023-05-04 12:04:27 -0600 |
|---|---|---|
| committer | Charles Harris <charlesr.harris@gmail.com> | 2023-05-04 14:38:04 -0600 |
| commit | 74a0dc453bd5917cea9f31b500f432a8ab73c782 (patch) | |
| tree | 2d38a4c5fd22e01778cf119894fa7b84a0d073fc /.github/workflows | |
| parent | 39aee7593354422c7b7bfdfa72ae4bae305c4324 (diff) | |
| download | numpy-74a0dc453bd5917cea9f31b500f432a8ab73c782.tar.gz | |
BUG: Cannot mix ``uses`` and ``run`` in workflow script
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/wheels.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 677e69853..f8f91b49d 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -106,9 +106,11 @@ jobs: with: python-version: "3.x" - - name: setup rtools for 32-bit - # We need rtools 4.0 to have 32 bit support + # We need rtools 4.0 to have 32 bit support on windows + - if: runner.os == 'windows' uses: r-windows/install-rtools@13886bb4048f1b862d33869a18b73cdd446a3961 # main + + - name: setup rtools for 32-bit run: | echo "PLAT=i686" >> $env:GITHUB_ENV echo "PATH=c:\rtools40\mingw32\bin;$env:PATH" >> $env:GITHUB_ENV |
