Skip to content
Draft
1 change: 1 addition & 0 deletions test/bin/manage_build_cache.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source "${SCRIPTDIR}/common.sh"

AWS_BUCKET_NAME="${AWS_BUCKET_NAME:-microshift-build-cache}"
AWS_BUCKET_NAME="microshift-build-pr5850-cache-us-west-2"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why does this bucket exist?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Only for testing purposes. I need to rebuild cache due to the changes, so I'm targetting a new bucket to not mess up default bucket.

BCH_SUBDIR=
TAG_SUBDIR=
ARCH_SUBDIR="${UNAME_M}"
Expand Down
13 changes: 13 additions & 0 deletions test/package-sources-bootc/microshift-rt.repo
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{{- if and (env.Getenv "UNAME_M" "") (eq "x86_64" .Env.UNAME_M) }}
[rhel-9-for-x86_64-rt-rpms]
name = Red Hat Enterprise Linux 9 for x86_64 - Real Time (RPMs)
baseurl = https://cdn.redhat.com/content/dist/rhel9/9.6/{{ .Env.UNAME_M }}/rt/os
enabled = 1
gpgcheck = 1
gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
sslverify = 1
sslcacert = /etc/rhsm/ca/redhat-uep.pem
sslclientkey = {{ .Env.SSL_CLIENT_KEY_FILE }}
sslclientcert = {{ .Env.SSL_CLIENT_CERT_FILE }}
skip_if_unavailable = 0
{{- end -}}
1 change: 1 addition & 0 deletions test/scenarios-bootc/releases/el96-lrel@low-latency.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ scenario_run_tests() {

run_tests host1 \
--exitonfailure \
suites/tuned/profile.robot \
suites/tuned/microshift-tuned.robot \
suites/tuned/workload-partitioning.robot \
suites/tuned/uncore-cache.robot
Expand Down
2 changes: 1 addition & 1 deletion test/suites/tuned/profile.robot
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ X86 64 Should Run RT Kernel

${arch}= Command Should Work uname -m
IF "${arch}" == "x86_64"
${kernel}= Command Should Work sudo grubby --default-kernel
${kernel}= Command Should Work uname -r
Should End With ${kernel} +rt
END

Expand Down