Skip to content

Commit

Permalink
adding centos stream 9 build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
amichelotti committed Nov 9, 2024
1 parent 28aaf4e commit 80855ab
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,23 @@ jobs:
run: |
KBUILD_MODPOST_WARN=1 make -C mrmShared/linux CC=${CC:=gcc} KERNELDIR="$PWD/kernel"
centos:
name: CentOS Stream 9 Kernel Module Test
runs-on: ubuntu-latest
container:
image: centos:stream9
steps:
- uses: actions/checkout@v2
- name: Info
run: |
gcc --version
- name: Install Dependencies
run: |
yum update -y
yum install -y kernel-devel kmod elfutils-libelf-devel
- name: Build
run: |
KBUILD_MODPOST_WARN=1 make -C mrmShared/linux KERNELDIR="/usr/src/kernels/$(uname -r)"
host:
name: With VM host
runs-on: ubuntu-22.04
Expand Down

0 comments on commit 80855ab

Please sign in to comment.