Skip to content

Commit

Permalink
github: Add compilation tests for 6.10 and 6.12
Browse files Browse the repository at this point in the history
New conditional compile flags added to configure.ac should be reflected
with appropriate kernel compile tests.

Signed-off-by: Jason Gerecke <[email protected]>
  • Loading branch information
jigpu committed Jan 14, 2025
1 parent 2affa20 commit 936418a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
kernel: ["6.3", "5.15", "5.10", "5.4", "5.0", "4.19"]
kernel: ["6.12", "6.10", "6.3", "5.15", "5.10", "5.4", "5.0", "4.19"]
include:
- kernel: "4.19"
compile_cflags: -Wno-error=format-truncation -Wno-error=pointer-sign
Expand All @@ -27,6 +27,12 @@ jobs:
- kernel: "6.3"
compile_cflags: -Wno-error=format-truncation -Wno-error=pointer-sign
build_makeflags: KBUILD_MODPOST_WARN=1
- kernel: "6.10"
compile_cflags: -Wno-error=format-truncation -Wno-error=pointer-sign
build_makeflags: KBUILD_MODPOST_WARN=1
- kernel: "6.12"
compile_cflags: -Wno-error=format-truncation -Wno-error=pointer-sign
build_makeflags: KBUILD_MODPOST_WARN=1
steps:
- name: Install dependencies
run: |
Expand Down

0 comments on commit 936418a

Please sign in to comment.