Skip to content

Commit 58dc3bb

Browse files
authored
matrix: os: [macos-13, ubuntu-latest]
1 parent b7acc60 commit 58dc3bb

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

.github/workflows/build.yml

+9-10
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,23 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
max-parallel: 5
12-
matrix:
13-
os: [macos-13, macos-latest, ubuntu-latest, windows-latest, windows-2025]
12+
matrix: # TODO: Add all the following OSes...
13+
# os: [macos-13, macos-latest, ubuntu-latest, windows-latest, windows-2025]
14+
os: [macos-13, ubuntu-latest] # macOS on Intel and Ubuntu builds succeed.
1415
runs-on: ${{ matrix.os }}
1516
steps:
16-
# Add https://www.gnu.org/software/automake
17+
# On macOS install https://www.gnu.org/software/automake
1718
- if: runner.os == 'macOS'
1819
run: brew install automake
19-
- if: runner.os == 'Windows'
20-
shell: bash # Not pwsh on Windows
21-
# https://community.chocolatey.org/packages/automake Does not exist!!
22-
# run: choco install automake
23-
# run: choco install make # GNU make
24-
run: autoreconf -f -i
20+
# - if: runner.os == 'Windows'
21+
# shell: bash # Not pwsh on Windows
22+
# # https://community.chocolatey.org/packages/automake Does not exist!!
23+
# # run: choco install automake
24+
# # run: choco install make # GNU make
2525
- uses: actions/checkout@v4
2626
- shell: bash # Not pwsh on Windows
2727
run: |
2828
./autogen.sh
29-
autoreconf -f -i
3029
./configure
3130
make
3231
sudo make install

0 commit comments

Comments
 (0)