Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: build
on:
push:
pull_request:
branches: [master]
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
max-parallel: 5
matrix: # TODO: Add all the following OSes...
# os: [macos-13, macos-latest, ubuntu-latest, ubuntu-24.04-arm, windows-latest, windows-2025]
os: [macos-13, ubuntu-latest, ubuntu-24.04-arm] # macOS on Intel and Ubuntu builds succeed.
runs-on: ${{ matrix.os }}
steps:
# On macOS install https://www.gnu.org/software/automake
- if: runner.os == 'macOS'
run: brew install automake
# - if: runner.os == 'Windows'
# shell: bash # Not pwsh on Windows
# # https://community.chocolatey.org/packages/automake Does not exist!!
# # run: choco install automake
# # run: choco install make # GNU make
- uses: actions/checkout@v4
- shell: bash # Not pwsh on Windows
run: |
./autogen.sh
./configure
make
sudo make install