Fix CI detection of kernel headers #65
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Checking driver compiles on various versions of raspbian/raspios | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
target: [zero_raspbian, zero_raspios, zero_dietpi, zero2_raspios, zero2_dietpi, zero2_64_raspios, zero2_64_dietpi] | |
include: | |
- target: zero_raspbian | |
cpu: arm1176 | |
cpu_info: cpuinfo/raspberrypi_zero_w | |
base_image: raspbian_lite:latest | |
- target: zero_raspios | |
cpu: arm1176 | |
cpu_info: cpuinfo/raspberrypi_zero_w | |
base_image: raspios_lite:latest | |
- target: zero_dietpi | |
cpu: arm1176 | |
cpu_info: cpuinfo/raspberrypi_zero_w | |
base_image: dietpi:rpi_armv6_bullseye | |
- target: zero2_raspios | |
cpu: cortex-a7 | |
cpu_info: cpuinfo/raspberrypi_zero2_w | |
base_image: raspios_lite:latest | |
- target: zero2_dietpi | |
cpu: cortex-a7 | |
cpu_info: cpuinfo/raspberrypi_zero2_w | |
base_image: dietpi:rpi_armv7_bullseye | |
- target: zero2_64_raspios | |
cpu: cortex-a53 | |
cpu_info: cpuinfo/raspberrypi_zero2_w_arm64 | |
base_image: raspios_lite_arm64:latest | |
- target: zero2_64_dietpi | |
cpu: cortex-a53 | |
cpu_info: cpuinfo/raspberrypi_zero2_w_arm64 | |
base_image: dietpi:rpi_armv8_bullseye | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: pguyot/arm-runner-action@v2 | |
with: | |
image_additional_mb: 1024 | |
base_image: ${{ matrix.base_image }} | |
cpu: ${{ matrix.cpu }} | |
commands: | | |
kernel_headers_pkg=`apt-cache show raspberrypi-kernel-headers | sed -n -e 's|Filename: .*/||p'` | |
wget -q http://archive.raspberrypi.org/debian/pool/main/r/raspberrypi-firmware/${kernel_headers_pkg} | |
dpkg --install ${kernel_headers_pkg} | |
apt-get update -y --allow-releaseinfo-change | |
apt-get install --no-install-recommends -y libasound2-dev make gcc libc6-dev | |
for builddir in /lib/modules/*/build ; do | |
parentdir=`dirname ${builddir}` | |
kernelrelease=`basename ${parentdir}` | |
make KERNELRELEASE=${kernelrelease} | |
sudo make install KERNELRELEASE=${kernelrelease} | |
make clean KERNELRELEASE=${kernelrelease} | |
make test KERNELRELEASE=${kernelrelease} | |
done |