requirements(deps): bump tomli from 2.0.1 to 2.0.2 #1705
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Smoke test creation of Arch chroots | |
on: | |
pull_request: | |
push: | |
schedule: | |
- cron: '0 16 * * 5' # Every Friday 4pm | |
jobs: | |
install_and_run: | |
name: Smoke test creation of Arch chroots | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Git repository | |
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
- 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@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0 | |
with: | |
python-version: 3.8 | |
- name: Install | |
run: |- | |
sudo pip3 install \ | |
--disable-pip-version-check \ | |
. | |
- name: Smoke test creation of Arch chroots | |
run: |- | |
cd /tmp # to not be in Git clone folder | |
directory-bootstrap --help ; echo | |
directory-bootstrap arch --help ; echo | |
sudo PYTHONUNBUFFERED=1 directory-bootstrap --verbose --debug arch /tmp/arch_chroot/ | |
- name: Create .tar archive | |
run: |- | |
set -eux | |
git fetch --force --tags --unshallow origin # for "git describe" | |
chroot_base_name="arch-chroot-$(date '+%Y-%m-%d-%H-%M')-image-bootstrap-$(git describe --tags).tar.xz" | |
sudo chmod a+xr /tmp/arch_chroot/ # for "cd" | |
( cd /tmp/arch_chroot/ && sudo tar c . ) | xz -T "$(nproc)" > "${chroot_base_name}" | |
ls -lh "${chroot_base_name}" | |
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 | |
with: | |
name: arch-chroot-qcow2 | |
path: '*.tar.xz' | |
if-no-files-found: error |