try 2024.01 defconfig #89
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: sbc-turingrk1 | |
| on: | |
| push: | |
| branches: [ 'main', 'release-*' ] | |
| tags: | |
| - "v*" | |
| jobs: | |
| sbc: | |
| runs-on: buildjet-4vcpu-ubuntu-2204-arm | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| # need history for `git describe` to work for Talos `Makefile` | |
| fetch-depth: 0 | |
| fetch-tags: true | |
| - uses: docker/setup-buildx-action@v3 | |
| with: | |
| version: v0.19.1 | |
| buildkitd-config: .github/buildkitd.toml | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build and push sbc turingrk1 overlay image | |
| run: make | |
| env: | |
| PUSH: '1' | |
| USERNAME: ${{ github.actor }} | |
| PLATFORM: linux/arm64,linux/amd64 | |
| PROGRESS: plain | |
| CI_ARGS: "--cache-from=ghcr.io/${{ github.actor }}/sbc-turingrk1:cache --cache-to=ghcr.io/${{ github.actor }}/sbc-turingrk1:cache" | |