Skip to content

Commit c9982a0

Browse files
committed
Add Fedora 42 to CI
42 works fine. rawhide fails to load ebpf path probes, these are nightly build fedora images and don't belong in CI anyway, still it's useful to have it in the script.
1 parent d325c7a commit c9982a0

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

.buildkite/pipeline.yml

+11
Original file line numberDiff line numberDiff line change
@@ -191,3 +191,14 @@ steps:
191191
provider: gcp
192192
machineType: n2-standard-2
193193
enableNestedVirtualization: true
194+
195+
- label: "quark-test on fedora 42(beta)"
196+
key: test_fedora_42
197+
command: "./.buildkite/runtest_fedora.sh 42"
198+
depends_on:
199+
- make_docker
200+
agents:
201+
image: family/core-ubuntu-2204
202+
provider: gcp
203+
machineType: n2-standard-2
204+
enableNestedVirtualization: true

krun-fedora.sh

+4-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ FEDORAVER="$2"
1919
shift 2
2020

2121
case $FEDORAVER in
22-
2?|3?) URL="https://archives.fedoraproject.org/pub/archive/fedora/linux/updates/$FEDORAVER/Everything/x86_64/Packages/k";;
23-
4?) URL="http://ftp.fau.de/fedora/linux/updates/$FEDORAVER/Everything/x86_64/Packages/k";;
24-
*) echo bad version "$FEDORAVER" 1>&2
22+
2?|3?) URL="https://archives.fedoraproject.org/pub/archive/fedora/linux/updates/$FEDORAVER/Everything/x86_64/Packages/k";;
23+
42|rawhide) URL="http://ftp.fau.de/fedora/linux/development/$FEDORAVER/Everything/x86_64/os/Packages/k";;
24+
4?) URL="http://ftp.fau.de/fedora/linux/updates/$FEDORAVER/Everything/x86_64/Packages/k";;
25+
*) echo bad version "$FEDORAVER" 1>&2
2526
esac
2627

2728
TMPDIR=$(mktemp -d "/tmp/$SCRIPT.XXXXXXXXXX")

0 commit comments

Comments
 (0)