Skip to content

Commit

Permalink
Test IPv4 networking
Browse files Browse the repository at this point in the history
  • Loading branch information
pguyot committed Apr 29, 2024
1 parent 4232afc commit 3771bc6
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/test-ipv4-networking.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 3771bc6

Please sign in to comment.