Skip to content

Commit

Permalink
GitHub actions: Remove deprecated CI runner, add more diverse set of …
Browse files Browse the repository at this point in the history
…runners.
  • Loading branch information
bmah888 committed Feb 21, 2025
1 parent 7b2af28 commit a819ccd
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
sudo apt-get -y update && sudo apt-get install -y cppcheck && \
cppcheck . --force --inline-suppr
build-test-latest:
runs-on: ubuntu-latest
runs-on: [ ubuntu-latest, ubuntu-22.04, ubuntu-22.04-arm, macos-latest, macos-13 ]
steps:
- uses: actions/checkout@v4
- name: install dependencies
Expand All @@ -21,15 +21,3 @@ jobs:
./configure && make && make check
timeout 300 src/iperf3 -s &
./test_commands.sh localhost
build-test-ubuntu-20_04:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: install dependencies
run: |
sudo apt-get -y update && sudo apt-get install -y build-essential
- name: build
run: |
./configure && make && make check
timeout 300 src/iperf3 -s &
./test_commands.sh localhost

0 comments on commit a819ccd

Please sign in to comment.