From 50d9d21c3e564245b78b40138128a85f0863a15c Mon Sep 17 00:00:00 2001 From: Domingo Dirutigliano Date: Mon, 4 Aug 2025 11:54:35 +0200 Subject: [PATCH] test also for arm64 --- .github/workflows/docker-image.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 2321fea..ae6fb84 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -20,7 +20,7 @@ jobs: run_tests: true - os: ubuntu-24.04-arm arch: arm64 - run_tests: false + run_tests: true permissions: contents: read packages: write @@ -29,11 +29,11 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Build and run firegex (amd64 only) + - name: Build and run firegex if: matrix.run_tests run: python3 start.py start -P testpassword - - name: Run tests (amd64 only) + - name: Run tests if: matrix.run_tests run: sudo apt-get install -y iperf3 && cd tests && ./run_tests.sh