Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,28 @@ steps:
machineType: n2-standard-2
enableNestedVirtualization: true

- label: "quark-test on rhel 10"
key: test_rhel_10
command: "./.buildkite/runtest_distro.sh rhel 10"
depends_on:
- make_docker
agents:
image: family/core-ubuntu-2404
provider: gcp
machineType: n2-standard-2
enableNestedVirtualization: true

- label: "quark-test on rhel 10.0"
key: test_rhel_10_0
command: "./.buildkite/runtest_distro.sh rhel 10.0"
depends_on:
- make_docker
agents:
image: family/core-ubuntu-2404
provider: gcp
machineType: n2-standard-2
enableNestedVirtualization: true

- label: "quark-test on ubuntu 18.04 (no bpf)"
key: test_ubuntu_18_04
command: "./.buildkite/runtest_distro.sh ubuntu 18.04 -k"
Expand Down
1 change: 1 addition & 0 deletions krun-rhel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ case $RHELVER in
8|9) URL="https://ftp.fau.de/rockylinux/$RHELVER/BaseOS/x86_64/os/Packages/k";;
8.[34]) URL="https://dl.rockylinux.org/vault/rocky/$RHELVER/BaseOS/x86_64/os/Packages";;
8.?|9.?) URL="https://dl.rockylinux.org/vault/rocky/$RHELVER/BaseOS/x86_64/os/Packages/k";;
10|10.?) URL="https://ftp.fau.de/rockylinux/$RHELVER/BaseOS/x86_64/os/Packages/k";;
*) die "Unsupported RHEL version: $RHELVER";;
esac

Expand Down