Skip to content

Commit

Permalink
ci: match known failures to kernel versions
Browse files Browse the repository at this point in the history
While Ubuntu may have new updates after marking a known failure,
matching a specific package version is not so correct. This change
matches kernel major.minor version instead.

Signed-off-by: You-Sheng Yang <vicamo@gmail.com>
  • Loading branch information
vicamo committed Oct 16, 2020
1 parent e0c4d6f commit a250dd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/kmod-compatibility-checks.yml
Expand Up @@ -17,7 +17,7 @@ jobs:
series: [trusty, xenial, bionic, focal, groovy]
container: buildpack-deps:${{ matrix.series }}
env:
JOB_KNOWN_FAILURES: "3.13.0-170-generic"
JOB_KNOWN_FAILURES: "3.13"
steps:
- uses: actions/checkout@v2

Expand All @@ -36,7 +36,7 @@ jobs:
modinfo v4l2loopback.ko;
else
case " ${JOB_KNOWN_FAILURES} " in
*${kver}*)
*" ${kver%.*} "*)
echo "#### Skipped known failure ${kver}";
;;
*)
Expand Down

0 comments on commit a250dd2

Please sign in to comment.