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 f391dee commit 7d172f0
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/test-ipv4-networking.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
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 || echo "Cannot ping from GitHub Action"
wget https://github.com/
- uses: actions/checkout@v4
- uses: ./ # pguyot/arm-runner-action@HEAD
with:
base_image: ${{ matrix.image }}
cpu: cortex-a7
commands: |
ping -c 1 github.com || echo "Cannot ping from ARM runner action"
wget https://github.com/

0 comments on commit 7d172f0

Please sign in to comment.