Skip to content

Commit

Permalink
ci: Allow kernel series and version latest to fail.
Browse files Browse the repository at this point in the history
  • Loading branch information
jerzyjamroz committed Sep 15, 2023
1 parent 70c0721 commit be87367
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,12 @@ jobs:
make -C kernel CC=${CC:=gcc} modules_prepare
- name: Build
run: |
make -C mrmShared/linux CC=${CC:=gcc} KERNELDIR="$PWD/kernel"
if [[ "${KSER}" != "latest" ]]; then
make -C mrmShared/linux CC=${CC:=gcc} KERNELDIR="$PWD/kernel"
else
# Remove the latest from the error generation
make -C mrmShared/linux CC=${CC:=gcc} KERNELDIR="$PWD/kernel" || exit 1
fi
host:
name: With VM host
Expand Down

0 comments on commit be87367

Please sign in to comment.