Update build.yml #152
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: bluebuild | |
| on: | |
| push: | |
| paths-ignore: # don't rebuild if only documentation has changed | |
| - "**.md" | |
| pull_request: | |
| workflow_dispatch: # allow manually triggering builds | |
| concurrency: | |
| # only run one build at a time | |
| group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| # Job 1: Build the base image first | |
| build-base: | |
| name: Build Base Image | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| id-token: write | |
| steps: | |
| - name: Build Custom Image | |
| uses: blue-build/github-action@v1.9 | |
| with: | |
| recipe: recipe.yml # <-- Only builds the base recipe | |
| cosign_private_key: ${{ secrets.SIGNING_SECRET }} | |
| registry_token: ${{ github.token }} | |
| pr_event_number: ${{ github.event.number }} | |
| maximize_build_space: true | |
| # Job 2: Build the NVIDIA image AFTER the base image is done | |
| build-nvidia: | |
| name: Build NVIDIA Image | |
| runs-on: ubuntu-latest | |
| needs: build-base # <-- This is the crucial line! | |
| permissions: | |
| contents: read | |
| packages: write | |
| id-token: write | |
| steps: | |
| - name: Build Custom Image | |
| uses: blue-build/github-action@v1.9 | |
| with: | |
| recipe: recipe-nvidia.yml # <-- Only builds the NVIDIA recipe | |
| cosign_private_key: ${{ secrets.SIGNING_SECRET }} | |
| registry_token: ${{ github.token }} | |
| pr_event_number: ${{ github.event.number }} | |
| maximize_build_space: true |