From a819ccdf933a0d9dc54284974f6532a762879768 Mon Sep 17 00:00:00 2001 From: "Bruce A. Mah" Date: Fri, 21 Feb 2025 11:23:23 -0800 Subject: [PATCH] GitHub actions: Remove deprecated CI runner, add more diverse set of runners. --- .github/workflows/test.yml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7001a9653..e0bf47926 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 @@ -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