Skip to content

Commit

Permalink
Update GitHub matrix to use correct 6.1.x kernel (#2004)
Browse files Browse the repository at this point in the history
Summary: Update GitHub matrix to use correct 6.1.x kernel

Builds after #1995 would fail since GitHub would attempt to run the
6.1.8 kernel build, which bazel no longer understands. This also updates
the qemu test runner kernel that was incorrectly updated in #1999. I
thought I had exercised that default value with my testing, but it
didn't trigger that default value.

Relevant Issues: N/A

Type of change: /kind bugfix

Test Plan: GitHub build on #2002 which pulls in the matrix change is no
longer failing
  • Loading branch information
ddelnano authored Sep 4, 2024
1 parent df3992f commit 9ae53a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bazel/test_runners/qemu_with_kernel/runner.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ qemu_with_kernel_test_runner = rule(
implementation = _test_runner_impl,
attrs = {
"kernel_image": attr.label(
default = Label("@linux_build_6_1_18_x86_64//file:linux-build.tar.gz"),
default = Label("@linux_build_6_1_106_x86_64//file:linux-build.tar.gz"),
allow_single_file = True,
),
"_busybox": attr.label(
Expand Down
2 changes: 1 addition & 1 deletion ci/github/matrix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ all_kernel_versions=(
)
default_kernel_versions=(
"4.14.254"
"6.1.18"
"6.1.106"
)
kernel_versions=( "${default_kernel_versions[@]}" )

Expand Down

0 comments on commit 9ae53a8

Please sign in to comment.