Skip to content
Open
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
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"
BCH_SUBDIR=
TAG_SUBDIR=

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ FROM localhost/rhel96-bootc-brew-zstream-with-optional:latest

# Install low-latency packages
RUN dnf install -y microshift-low-latency-{{env.Getenv "BREW_Y0_RELEASE_VERSION"}} && \
dnf clean all
# {{- if and (env.Getenv "UNAME_M" "") (eq "x86_64" .Env.UNAME_M) }}
dnf install -y kernel-rt && \
# {{- end }}
dnf clean all

# Enable microshift-tuned service
RUN systemctl enable microshift-tuned
Expand Down
4 changes: 3 additions & 1 deletion test/scenarios-bootc/releases/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ scenario_run_tests() {

run_tests host1 \
--exitonfailure \
suites/tuned/profile.robot \
suites/tuned/microshift-tuned.robot \
suites/tuned/workload-partitioning.robot
suites/tuned/workload-partitioning.robot \
suites/tuned/uncore-cache.robot
}
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