-
Notifications
You must be signed in to change notification settings - Fork 45
72 lines (59 loc) · 2.26 KB
/
Copy pathimage-bootstrap-gentoo.yml
File metadata and controls
72 lines (59 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Cache pip
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
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@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.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 8g /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@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: gentoo-openstack-qcow2
path: '*.qcow2'
if-no-files-found: error