stage2 #4
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: stage2 | |
| on: workflow_dispatch | |
| jobs: | |
| build-push: | |
| permissions: | |
| packages: write | |
| runs-on: | |
| - self-hosted | |
| - pkgs | |
| steps: | |
| - | |
| name: gather-system-info | |
| id: system-info | |
| uses: kenchan0130/actions-system-info@v1.3.0 | |
| continue-on-error: true | |
| - | |
| name: print-system-info | |
| run: | | |
| MEMORY_GB=$((${{ steps.system-info.outputs.totalmem }}/1024/1024/1024)) | |
| OUTPUTS=( | |
| "CPU Core: ${{ steps.system-info.outputs.cpu-core }}" | |
| "CPU Model: ${{ steps.system-info.outputs.cpu-model }}" | |
| "Hostname: ${{ steps.system-info.outputs.hostname }}" | |
| "NodeName: ${NODE_NAME}" | |
| "Kernel release: ${{ steps.system-info.outputs.kernel-release }}" | |
| "Kernel version: ${{ steps.system-info.outputs.kernel-version }}" | |
| "Name: ${{ steps.system-info.outputs.name }}" | |
| "Platform: ${{ steps.system-info.outputs.platform }}" | |
| "Release: ${{ steps.system-info.outputs.release }}" | |
| "Total memory: ${MEMORY_GB} GB" | |
| ) | |
| for OUTPUT in "${OUTPUTS[@]}";do | |
| echo "${OUTPUT}" | |
| done | |
| continue-on-error: true | |
| - name: Install Python 3.11 | |
| run: | | |
| sudo apt update | |
| sudo apt install -y python3.11 | |
| - | |
| name: Checkout | |
| uses: actions/checkout@v4 | |
| - | |
| name: Set up Docker Buildx | |
| id: setup-buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - | |
| name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Preseed | |
| run: | | |
| make preseed | |
| - name: Build stage2 | |
| run: | | |
| make stage2 PROGRESS=plain PLATFORM=linux/amd64,linux/arm64 | |
| - name: Push stage2 | |
| run: | | |
| ./src/publish-pkg.sh bootstrap-stage2 latest |