From b7ce67e2fbb07dc4faf56eadd5c0f1897f810862 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 | 34 ++++++++++++++++++++++ 1 file changed, 34 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..c1f6f45 --- /dev/null +++ b/.github/workflows/test-ipv4-networking.yml @@ -0,0 +1,34 @@ +name: Test IPv4 networking +on: + push: + branches: + - 'main' + - 'releases/**' + pull_request: + workflow_dispatch: + +jobs: + build_base_images: + 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: + - uses: actions/checkout@v4 + - uses: ./ # pguyot/arm-runner-action@HEAD + with: + base_image: ${{ matrix.image }} + cpu: cortex-a7 + commands: | + cat /etc/resolv.conf + ping -c 1 1.1.1.1 + ping -c 1 9.9.9.9