Skip to content

Commit 7a703e6

Browse files
committed
Install Mono x86 for Pypy on Windows
1 parent dce290a commit 7a703e6

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,12 @@ jobs:
3535
uses: actions/cache@v2
3636
with:
3737
path: ${{ env.TEMP }}\chocolatey
38-
key: ${{ runner.os }}-chocolatey
39-
restore-keys: |
40-
${{ runner.os }}-chocolatey
38+
key: ${{ runner.os }}-chocolatey-${{ matrix.python == 'pypy3' && '32' || '64' }}
4139

4240
- name: Install Mono
4341
if: runner.os == 'Windows'
4442
run: |
45-
choco install -y mono
43+
choco install -y mono ${{ matrix.python == 'pypy3' && '--x86' || '' }}
4644
4745
- name: Test with pytest
4846
run: |

0 commit comments

Comments
 (0)