-
Notifications
You must be signed in to change notification settings - Fork 45
64 lines (53 loc) · 2.05 KB
/
directory-bootstrap-gentoo.yml
File metadata and controls
64 lines (53 loc) · 2.05 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
name: Smoke test creation of Gentoo chroots
on:
pull_request:
push:
schedule:
- cron: '0 16 * * 5' # Every Friday 4pm
jobs:
install_and_run:
name: Smoke test creation of Gentoo chroots
runs-on: ubuntu-22.04
steps:
- name: Checkout Git repository
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Cache pip
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.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@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.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 \
retry
- name: Smoke test creation of Gentoo chroots
run: |-
cd /tmp # to not be in Git clone folder
directory-bootstrap --help ; echo
directory-bootstrap gentoo --help ; echo
sudo retry --times=5 -- env PYTHONUNBUFFERED=1 directory-bootstrap --verbose --debug gentoo /tmp/gentoo_chroot/
- name: Create .tar archive
run: |-
set -eux
git fetch --force --tags --unshallow origin # for "git describe"
chroot_base_name="gentoo-chroot-$(date '+%Y-%m-%d-%H-%M')-image-bootstrap-$(git describe --tags).tar.xz"
sudo chmod a+xr /tmp/gentoo_chroot/ # for "cd"
( cd /tmp/gentoo_chroot/ && sudo tar c . ) | xz -T "$(nproc)" > "${chroot_base_name}"
ls -lh "${chroot_base_name}"
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: gentoo-chroot-qcow2
path: '*.tar.xz'
if-no-files-found: error