Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Update Packit target to Fedora 41 from Fedora 40 #854

Merged
merged 2 commits into from
Oct 29, 2024
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
20 changes: 9 additions & 11 deletions .packit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- job: copr_build
trigger: pull_request
targets:
# Primary targets are c9s and fedora:40 right now, which build
# Primary targets are c9s, c10s and fedora:41 right now, which build
# for all architectures
- centos-stream-9-x86_64
- centos-stream-9-aarch64
Expand All @@ -48,10 +48,10 @@ jobs:
- centos-stream-10-aarch64
- centos-stream-10-ppc64le
- centos-stream-10-s390x
- fedora-40-x86_64
- fedora-40-aarch64
- fedora-40-ppc64le
- fedora-40-s390x
- fedora-41-x86_64
- fedora-41-aarch64
- fedora-41-ppc64le
- fedora-41-s390x
# Sanity check on secondary targets, fewer architectures just
# because the chance that we break e.g. ppc64le *just* on
# rawhide is basically nil.
Expand All @@ -63,8 +63,8 @@ jobs:
- job: tests
trigger: pull_request
targets:
- fedora-40-x86_64
- fedora-40-aarch64
- fedora-41-x86_64
- fedora-41-aarch64
tmt_plan: /integration-build
skip_build: true
identifier: integration-test
Expand All @@ -75,18 +75,16 @@ jobs:
trigger: pull_request
targets:
- centos-stream-9-x86_64
- centos-stream-9-aarch64
- centos-stream-10-aarch64
- fedora-40-x86_64
- fedora-41-x86_64
tmt_plan: /to-existing-root
identifier: e2e-test-to-existing-root

- job: tests
trigger: pull_request
targets:
- centos-stream-9-aarch64
- centos-stream-10-x86_64
- centos-stream-10-aarch64
- fedora-40-aarch64
- fedora-41-aarch64
tmt_plan: /to-disk
identifier: e2e-test-to-disk
10 changes: 5 additions & 5 deletions tests/e2e/bootc-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -175,10 +175,10 @@ cat "$INSTALL_CONTAINERFILE"

# Build test bootc image and push to local registry
greenprint "Build $TEST_OS installation container image"
sudo podman build --tls-verify=false --retry=5 --retry-delay=10 -t "${TEST_IMAGE_NAME}:${QUAY_REPO_TAG}" -f "$INSTALL_CONTAINERFILE" "$TEMPDIR"
sudo podman build --tls-verify=false -t "${TEST_IMAGE_NAME}:${QUAY_REPO_TAG}" -f "$INSTALL_CONTAINERFILE" "$TEMPDIR"

greenprint "Push $TEST_OS installation container image"
retry sudo podman push --tls-verify=false --quiet "${TEST_IMAGE_NAME}:${QUAY_REPO_TAG}" "$TEST_IMAGE_URL"
sudo podman push --tls-verify=false --quiet "${TEST_IMAGE_NAME}:${QUAY_REPO_TAG}" "$TEST_IMAGE_URL"

# Prepare Ansible inventory file and ansible.cfg
greenprint "Prepare inventory file"
Expand Down Expand Up @@ -296,14 +296,14 @@ REALEOF

# Build upgrade container image and push to locay registry
greenprint "Build $TEST_OS upgrade container image"
sudo podman build --tls-verify=false --retry=5 --retry-delay=10 -t "${TEST_IMAGE_NAME}:${QUAY_REPO_TAG}" -f "$UPGRADE_CONTAINERFILE" .
sudo podman build --tls-verify=false -t "${TEST_IMAGE_NAME}:${QUAY_REPO_TAG}" -f "$UPGRADE_CONTAINERFILE" .

greenprint "Push $TEST_OS upgrade container image"
retry sudo podman push --tls-verify=false --quiet "${TEST_IMAGE_NAME}:${QUAY_REPO_TAG}" "$TEST_IMAGE_URL"
sudo podman push --tls-verify=false --quiet "${TEST_IMAGE_NAME}:${QUAY_REPO_TAG}" "$TEST_IMAGE_URL"

# Copy upgrade image to local folder for bootc switch test
if [[ "$AIR_GAPPED_DIR" != "" ]]; then
retry skopeo copy docker://"$TEST_IMAGE_URL" dir://"$AIR_GAPPED_DIR"
skopeo copy docker://"$TEST_IMAGE_URL" dir://"$AIR_GAPPED_DIR"
BOOTC_IMAGE="/mnt"
else
BOOTC_IMAGE="$TEST_IMAGE_URL"
Expand Down
11 changes: 0 additions & 11 deletions tests/e2e/shared_lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,6 @@ function redprint {
echo -e "\033[1;31m[$(date -Isecond)] ${1}\033[0m"
}

# Retry container image pull and push
function retry {
n=0
until [ "$n" -ge 3 ]
do
"$@" && break
n=$((n+1))
sleep 10
done
}

function deploy_libvirt_network {
greenprint "Start firewalld"
sudo systemctl enable --now firewalld
Expand Down