diff options
author | Chris Evich <cevich@redhat.com> | 2021-09-29 16:47:07 -0400 |
---|---|---|
committer | Chris Evich <cevich@redhat.com> | 2021-11-18 13:50:11 -0500 |
commit | 7f52bd8437dd907dec7d7a926b25b0f56b1c4c49 (patch) | |
tree | 23cdee2af5012bfc394b6ca6be787ee9a34a90a8 /contrib/cirrus/setup_environment.sh | |
parent | 3ee2d2367ac76b1448daa2562eda46d4e98c5e9a (diff) | |
download | podman-7f52bd8437dd907dec7d7a926b25b0f56b1c4c49.tar.gz podman-7f52bd8437dd907dec7d7a926b25b0f56b1c4c49.tar.bz2 podman-7f52bd8437dd907dec7d7a926b25b0f56b1c4c49.zip |
Cirrus: Bump Fedora to release 35
The Fedora 35 cloud images have switched to UEFI boot with a GPT
partition. Formerly, all Fedora images included support for runtime
re-partitioning. However, the requirement to test alternate storage
has since been dropped/removed. Rather than maintain a disused
feature, and supporting scripts, these Fedora VM images have reverted
to the default: Automatically resize to 100% on boot.
Signed-off-by: Chris Evich <cevich@redhat.com>
Diffstat (limited to 'contrib/cirrus/setup_environment.sh')
-rwxr-xr-x | contrib/cirrus/setup_environment.sh | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/contrib/cirrus/setup_environment.sh b/contrib/cirrus/setup_environment.sh index 1a07aeffc..8f535c7e7 100755 --- a/contrib/cirrus/setup_environment.sh +++ b/contrib/cirrus/setup_environment.sh @@ -119,12 +119,6 @@ case "$OS_RELEASE_ID" in ubuntu) ;; fedora) if ((CONTAINER==0)); then - msg "Configuring / Expanding host storage." - # VM is setup to allow flexibility in testing alternate storage. - # For general use, simply make use of all available space. - bash "$SCRIPT_BASE/add_second_partition.sh" - $SCRIPT_BASE/logcollector.sh df - # All SELinux distros need this for systemd-in-a-container msg "Enabling container_manage_cgroup" setsebool container_manage_cgroup true @@ -224,10 +218,8 @@ case "$TEST_FLAVOR" in remove_packaged_podman_files make install PREFIX=/usr ETCDIR=/etc - # TODO: Don't install stuff at test runtime! Do this from - # cache_images/fedora_packaging.sh in containers/automation_images - # and STRONGLY prefer installing RPMs vs pip packages in venv - dnf install -y python3-virtualenv python3-pytest4 + msg "Installing previously downloaded/cached packages" + dnf install -y $PACKAGE_DOWNLOAD_DIR/python3*.rpm virtualenv venv source venv/bin/activate pip install --upgrade pip |