Skip to content
Merged
Changes from all 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
18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,14 @@ jobs:
- name: build
run: |
./configure && make && make check
- name: test commands
run: |
timeout 300 src/iperf3 -s &
./test_commands.sh localhost
- name: test auth
run: |
pkill iperf3
./auth_test.sh
build-test-macos-ish:
strategy:
matrix:
Expand All @@ -47,8 +53,14 @@ jobs:
- name: build
run: |
./configure && make && make check
- name: test commands
run: |
timeout 300 src/iperf3 -s &
./test_commands.sh localhost
- name: test auth
run: |
pkill iperf3
./auth_test.sh
build-test-sanitizer-address:
runs-on: ubuntu-latest
steps:
Expand All @@ -61,5 +73,11 @@ jobs:
- name: build
run: |
./configure CFLAGS="-g -O0 -fsanitize=address" LDFLAGS="-fsanitize=address" && make && make check
- name: test commands
run: |
timeout 300 src/iperf3 -s &
./test_commands.sh localhost
- name: test auth
run: |
pkill iperf3
./auth_test.sh