We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
make
1 parent fd70877 commit e10e67dCopy full SHA for e10e67d
1 file changed
github-actions/ci-dist/action.yml
@@ -366,11 +366,14 @@ runs:
366
fi
367
echo "::endgroup::"
368
369
- - name: GNU make for Windows
+ - name: set MYMAKE (Windows)
370
shell: bash
371
- if: ${{ matrix.os == 'windows-latest' }}
372
- run: |
373
- choco install --verbose make
+ if: runner.os == 'Windows'
+ run: echo MYMAKE=gmake >> $GITHUB_ENV
+ - name: set MYMAKE (non-Windows)
374
+ shell: bash
375
+ if: runner.os != 'Windows'
376
+ run: echo MYMAKE=make >> $GITHUB_ENV
377
- name: target-test (no coverage)
378
379
env:
0 commit comments