Skip to content
Closed
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
3 changes: 3 additions & 0 deletions test/bin/ci_phase_iso_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,9 @@ run_bootc_image_build() {
# Skip all image builds for release testing CI jobs because all the images are fetched from the cache.
if [[ "${CI_JOB_NAME}" =~ .*release(-arm)?(-el(9|10))?$ ]]; then
$(dry_run) bash -x ./bin/build_bootc_images.sh -X
# Rebuild the tuned images to pick up containerfile changes from the PR
$(dry_run) bash -x ./bin/build_bootc_images.sh -f -t ./image-blueprints-bootc/layer4-release/group2/rhel98-bootc-brew-lrel-tuned.containerfile
$(dry_run) bash -x ./bin/build_bootc_images.sh -f -t ./image-blueprints-bootc/layer4-release/group2/rhel102-bootc-brew-lrel-tuned.containerfile
return
fi

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
# Note: This comment makes templating add a new line before the code
FROM localhost/rhel102-bootc-brew-lrel-optional:latest

RUN mkdir -p /usr/lib/systemd/system/tuned.service.d && \
printf '[Service]\nExecStart=\nExecStart=/usr/sbin/tuned --debug\n' \
> /usr/lib/systemd/system/tuned.service.d/debug.conf

# Enable microshift-tuned service
RUN systemctl enable microshift-tuned

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
# Note: This comment makes templating add a new line before the code
FROM localhost/rhel98-bootc-brew-lrel-optional:latest

RUN mkdir -p /usr/lib/systemd/system/tuned.service.d && \
printf '[Service]\nExecStart=\nExecStart=/usr/sbin/tuned --debug\n' \
> /usr/lib/systemd/system/tuned.service.d/debug.conf

# Enable microshift-tuned service
RUN systemctl enable microshift-tuned

Expand Down