Skip to content

Merge pull request #675 from hartwork/dependabot/pip/coverage-7.13.4 #2299

Merge pull request #675 from hartwork/dependabot/pip/coverage-7.13.4

Merge pull request #675 from hartwork/dependabot/pip/coverage-7.13.4 #2299

name: Smoke test creation of Gentoo OpenStack images
on:
pull_request:
push:
schedule:
- cron: '0 16 * * 5' # Every Friday 4pm
jobs:
install_and_run:
name: Smoke test creation of Gentoo OpenStack images
runs-on: ubuntu-22.04
steps:
- name: Checkout Git repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Cache pip
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Set up Python 3.14
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: 3.14
- name: Install
run: |-
sudo pip3 install \
--disable-pip-version-check \
.
- name: Install runtime dependencies
run: |-
sudo apt-get update
sudo apt-get install --no-install-recommends --yes \
kpartx \
qemu-utils \
retry
- name: Smoke test creation of Gentoo OpenStack images
run: |-
cd /tmp # to not be in Git clone folder
image-bootstrap --help ; echo
image-bootstrap gentoo --help ; echo
free -g
df -H
truncate --size 7g /tmp/disk
LOOP_DEV="$(sudo losetup --show --find -f /tmp/disk | tee /dev/stderr)"
echo "LOOP_DEV=${LOOP_DEV}" >> "${GITHUB_ENV}"
sudo retry --times=5 -- env PYTHONUNBUFFERED=1 image-bootstrap --verbose --debug --openstack gentoo ${LOOP_DEV}
- name: Create .qcow2 image from loop device
run: |-
set -eux
git fetch --force --tags --unshallow origin # for "git describe"
img_base_name="gentoo-openstack-$(date '+%Y-%m-%d-%H-%M')-image-bootstrap-$(git describe --tags).qcow2"
sudo qemu-img convert -f raw -O qcow2 "${LOOP_DEV}" "${img_base_name}"
ls -lh "${img_base_name}"
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: gentoo-openstack-qcow2
path: '*.qcow2'
if-no-files-found: error