Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Test IPv4 networking #101

Merged
merged 1 commit into from
Apr 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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/
Loading