Skip to content

Commit

Permalink
Fix conformance make target
Browse files Browse the repository at this point in the history
The conformance lanes are currently failing due to `go_default_test`
being unable to find a required GLIBC version[1].

The test_image[2] rpm bundle includes the required dependencies.

[1] https://storage.googleapis.com/kubevirt-prow/logs/periodic-kubevirt-push-nightly-conformance/1742735308912332800/artifacts/podlogs/sonobuoy/sonobuoy-kubevirt-conformance-job-24808aede4884e3e/logs/plugin.txt
[2] https://github.com/kubevirt/kubevirt/blob/f9391ddcd4a8f6c72b80606e36cd0bcb555e1e7a/rpm/BUILD.bazel#L2003

Signed-off-by: Brian Carey <[email protected]>
  • Loading branch information
brianmcarey committed Jan 4, 2024
1 parent 76563fb commit e464cba
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,14 @@ container_image(
files = [
":conformance-config.json",
],
tars = select({
"@io_bazel_rules_go//go/platform:linux_arm64": [
"//rpm:testimage_aarch64",
],
"//conditions:default": [
"//rpm:testimage_x86_64",
],
}),
visibility = ["//visibility:public"],
)

Expand Down

0 comments on commit e464cba

Please sign in to comment.