Skip to content

Commit

Permalink
GitHub actions: Add macOS runners.
Browse files Browse the repository at this point in the history
  • Loading branch information
bmah888 committed Feb 28, 2025
1 parent 23ca9ac commit a69e4b3
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,18 @@ jobs:
./configure && make && make check
timeout 300 src/iperf3 -s &
./test_commands.sh localhost
build-test-macos-ish:
strategy:
matrix:
os: [macos-15, macos-14]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: install dependencies
run: |
brew install coreutils
- name: build
run: |
./configure && make && make check
gtimeout 300 src/iperf3 -s &
./test_commands.sh localhost

0 comments on commit a69e4b3

Please sign in to comment.