Skip to content

Merge pull request #491 from hartwork/readme-sync-ci-status-badges #1620

Merge pull request #491 from hartwork/readme-sync-ci-status-badges

Merge pull request #491 from hartwork/readme-sync-ci-status-badges #1620

name: Smoke test creation of Void chroots
on:
pull_request:
push:
schedule:
- cron: '0 16 * * 5' # Every Friday 4pm
jobs:
install_and_run:
name: Smoke test creation of Void chroots
runs-on: ubuntu-22.04
steps:
- name: Checkout Git repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Cache pip
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Set up Python 3.8
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
with:
python-version: 3.8
- name: Install
run: |-
sudo pip3 install \
--disable-pip-version-check \
.
- name: Smoke test creation of Void chroots
run: |-
cd /tmp # to not be in Git clone folder
directory-bootstrap --help ; echo
directory-bootstrap void --help ; echo
sudo PYTHONUNBUFFERED=1 directory-bootstrap --verbose --debug void /tmp/void_chroot/
- name: Create .tar archive
run: |-
set -eux
git fetch --force --tags --unshallow origin # for "git describe"
chroot_base_name="void-chroot-$(date '+%Y-%m-%d-%H-%M')-image-bootstrap-$(git describe --tags).tar.xz"
sudo chmod a+xr /tmp/void_chroot/ # for "cd"
( cd /tmp/void_chroot/ && sudo tar c . ) | xz -T "$(nproc)" > "${chroot_base_name}"
ls -lh "${chroot_base_name}"
- uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
with:
name: void-chroot-qcow2
path: '*.tar.xz'
if-no-files-found: error