Skip to content

Commit 9ae53a8

Browse files
authored
Update GitHub matrix to use correct 6.1.x kernel (pixie-io#2004)
Summary: Update GitHub matrix to use correct 6.1.x kernel Builds after pixie-io#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 pixie-io#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 pixie-io#2002 which pulls in the matrix change is no longer failing
1 parent df3992f commit 9ae53a8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bazel/test_runners/qemu_with_kernel/runner.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ qemu_with_kernel_test_runner = rule(
8484
implementation = _test_runner_impl,
8585
attrs = {
8686
"kernel_image": attr.label(
87-
default = Label("@linux_build_6_1_18_x86_64//file:linux-build.tar.gz"),
87+
default = Label("@linux_build_6_1_106_x86_64//file:linux-build.tar.gz"),
8888
allow_single_file = True,
8989
),
9090
"_busybox": attr.label(

ci/github/matrix.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ all_kernel_versions=(
3939
)
4040
default_kernel_versions=(
4141
"4.14.254"
42-
"6.1.18"
42+
"6.1.106"
4343
)
4444
kernel_versions=( "${default_kernel_versions[@]}" )
4545

0 commit comments

Comments
 (0)