From 3771bc66ea35f57fb7bc46a44aa3ecc002169ab8 Mon Sep 17 00:00:00 2001 From: Paul Guyot Date: Mon, 29 Apr 2024 13:11:11 +0200 Subject: [PATCH] Test IPv4 networking --- .github/workflows/test-ipv4-networking.yml | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/test-ipv4-networking.yml diff --git a/.github/workflows/test-ipv4-networking.yml b/.github/workflows/test-ipv4-networking.yml new file mode 100644 index 0000000..36971fb --- /dev/null +++ b/.github/workflows/test-ipv4-networking.yml @@ -0,0 +1,39 @@ +name: Test IPv4 networking +on: + push: + branches: + - 'main' + - 'releases/**' + pull_request: + workflow_dispatch: + +jobs: + build: + strategy: + fail-fast: false + matrix: + image: + - raspbian_lite:latest + - raspios_lite:latest + - dietpi:rpi_armv6_bullseye + - dietpi:rpi_armv7_bullseye + - dietpi:rpi_armv8_bullseye + - dietpi:rpi_armv6_bookworm + - dietpi:rpi_armv7_bookworm + - dietpi:rpi_armv8_bookworm + runs-on: ubuntu-latest + steps: + - name: test native networking + run: | + ping -c 1 github.com + ping -c 1 1.1.1.1 + ping -c 1 9.9.9.9 + - uses: actions/checkout@v4 + - uses: ./ # pguyot/arm-runner-action@HEAD + with: + base_image: ${{ matrix.image }} + cpu: cortex-a7 + commands: | + ping -c 1 github.com + ping -c 1 1.1.1.1 + ping -c 1 9.9.9.9