-
-
Notifications
You must be signed in to change notification settings - Fork 35
37 lines (36 loc) · 980 Bytes
/
test-ipv4-networking.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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/