-
Notifications
You must be signed in to change notification settings - Fork 40
77 lines (65 loc) · 2.5 KB
/
image-bootstrap-debian.yml
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
73
74
75
76
77
name: Smoke test creation of Debian OpenStack images
on:
pull_request:
push:
schedule:
- cron: '0 16 * * 5' # Every Friday 4pm
jobs:
install_and_run:
name: Smoke test creation of Debian OpenStack images
strategy:
matrix:
debian_release:
# https://www.debian.org/releases/
- buster
- bullseye
- bookworm
runs-on: ubuntu-22.04
steps:
- name: Checkout Git repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Cache pip
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Set up Python 3.13
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: 3.13
- 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 \
debian-archive-keyring \
debootstrap \
kpartx \
qemu-utils
- name: Smoke test creation of Debian OpenStack images
run: |-
cd /tmp # to not be in Git clone folder
image-bootstrap --help ; echo
image-bootstrap debian --help ; echo
truncate --size 2g /tmp/disk
LOOP_DEV="$(sudo losetup --show --find -f /tmp/disk | tee /dev/stderr)"
echo "LOOP_DEV=${LOOP_DEV}" >> "${GITHUB_ENV}"
sudo PYTHONUNBUFFERED=1 image-bootstrap --verbose --debug --openstack debian --release ${{ matrix.debian_release }} ${LOOP_DEV}
- name: Create .qcow2 image from loop device
run: |-
set -eux
git fetch --force --tags --unshallow origin # for "git describe"
img_base_name="debian-openstack-${{ matrix.debian_release }}-$(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@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: debian-${{ matrix.debian_release }}-openstack-qcow2
path: '*.qcow2'
if-no-files-found: error