ptxdist: install ptxdist-2025.08.0 #8
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: Debian bookworm based machines | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| bookworm-base: | |
| name: Base (bookworm) | |
| runs-on: [self-hosted, forrest, debian-bookworm-base] | |
| steps: | |
| - name: Install essential packages | |
| run: | | |
| sudo localectl set-locale en_US.UTF-8 | |
| export DEBIAN_FRONTEND=noninteractive | |
| export DPKG_FORCE=confnew | |
| sudo -E apt-get update | |
| sudo -E apt-get --assume-yes dist-upgrade | |
| sudo -E apt-get --assume-yes install git | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| path: setup-data | |
| - name: Set up runner machine | |
| run: $PWD/setup-data/base/setup.sh | |
| - uses: forrest-runner/persist@main | |
| with: | |
| token: ${{ secrets.PERSISTENCE_TOKEN }} | |
| bookworm-debos: | |
| name: Debos (bookworm) | |
| needs: bookworm-base | |
| runs-on: [self-hosted, forrest, debian-bookworm-debos] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| path: setup-data | |
| - name: Install Software | |
| run: $PWD/setup-data/debos/setup.sh | |
| - uses: forrest-runner/persist@main | |
| with: | |
| token: ${{ secrets.PERSISTENCE_TOKEN }} | |
| bookworm-yocto: | |
| name: Yocto (bookworm) | |
| needs: bookworm-base | |
| runs-on: [self-hosted, forrest, debian-bookworm-yocto] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| path: setup-data | |
| - name: Install Software | |
| run: $PWD/setup-data/yocto/setup.sh | |
| - uses: forrest-runner/persist@main | |
| with: | |
| token: ${{ secrets.PERSISTENCE_TOKEN }} | |
| bookworm-ptxdist: | |
| name: PTXdist (bookworm) | |
| needs: bookworm-base | |
| runs-on: [self-hosted, forrest, debian-bookworm-ptxdist] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| path: setup-data | |
| - name: Install Software | |
| run: $PWD/setup-data/ptxdist/setup.sh | |
| - uses: forrest-runner/persist@main | |
| with: | |
| token: ${{ secrets.PERSISTENCE_TOKEN }} |