Skip to content

Commit 04b5a83

Browse files
committed
Debug autoconf + make for mingw
1 parent 5e4496d commit 04b5a83

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/build-test.yml

+8-7
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,6 @@ jobs:
4141
- uses: actions/setup-python@v5
4242
with:
4343
python-version: '3.x' # use latest Python 3.x
44-
- name: 'Install packages'
45-
if: runner.os == 'macOS'
46-
shell: bash
47-
run: |
48-
brew install ${{matrix.packages}}
4944
- name: 'Add user site-packages to PATH'
5045
if: runner.os != 'Windows'
5146
shell: bash
@@ -57,12 +52,18 @@ jobs:
5752
run: |
5853
$python_base = python -m site --user-base
5954
Write-Output "$python_base\\bin" >> $GITHUB_PATH
60-
- uses: msys2/setup-msys2@v2
55+
- name: 'Install macOS packages'
56+
if: runner.os == 'macOS'
57+
shell: bash
58+
run: |
59+
brew install ${{matrix.packages}}
60+
- name: 'Install MSYS2 packages'
61+
uses: msys2/setup-msys2@v2
6162
if: runner.os == 'Windows' && matrix.generator == 'MinGW Makefiles'
6263
with:
6364
update: false
6465
release: false
65-
install: make gcc
66+
install: make gcc autotools
6667
- name: 'Workaround for actions/runner-images#9491'
6768
if: runner.os == 'Linux'
6869
run: sudo sysctl vm.mmap_rnd_bits=28

0 commit comments

Comments
 (0)