Merge pull request #661 from hartwork/dependabot/pip/coverage-7.13.1 #2258
This file contains hidden or 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 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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Cache pip | |
| uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 | |
| 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@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 | |
| with: | |
| name: gentoo-chroot-qcow2 | |
| path: '*.tar.xz' | |
| if-no-files-found: error |