stage0 #23
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: stage0 | |
| on: workflow_dispatch | |
| jobs: | |
| build-push: | |
| permissions: | |
| packages: write | |
| runs-on: | |
| - self-hosted | |
| - pkgs | |
| services: | |
| buildkitd: | |
| image: moby/buildkit:v0.18.2 | |
| options: --privileged | |
| ports: | |
| - 1234:1234 | |
| volumes: | |
| - /var/lib/buildkit/${{ github.repository }}:/var/lib/buildkit | |
| - /usr/etc/buildkit/buildkitd.toml:/etc/buildkit/buildkitd.toml | |
| docker: | |
| image: docker:dind | |
| options: --privileged | |
| ports: | |
| - 22375:2375 | |
| env: | |
| TEST_INTEGRATION_USE_SNAPSHOTTER: "1" | |
| DOCKER_TLS_CERTDIR: "" | |
| 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: info1 | |
| run: | | |
| docker info | |
| - name: switch | |
| run: | | |
| echo "DOCKER_HOST=tcp://127.0.0.1:22375" >> $GITHUB_ENV | |
| sleep 20 | |
| - name: info2 | |
| run: | | |
| docker info | |
| - | |
| name: Set up Docker Buildx | |
| id: setup-buildx | |
| uses: docker/setup-buildx-action@v3 | |
| with: | |
| append: | | |
| - endpoint: tcp://buildkit-arm64.ci.svc.cluster.local:1234 | |
| platforms: linux/arm64 | |
| driver: remote | |
| endpoint: tcp://127.0.0.1:1234 | |
| - | |
| name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build stage0 | |
| run: | | |
| make stage0 PROGRESS=plain PLATFORM=linux/386 | |
| - name: Push stage0 | |
| run: | | |
| ./src/publish-pkg.sh bootstrap-stage0 latest |