Refactor Job Submission Template #388
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| types: [opened, reopened, synchronize, labeled] | |
| jobs: | |
| static-checks: | |
| uses: ./.github/workflows/static.yml | |
| detect-changes: | |
| needs: [static-checks] | |
| name: Docker Changed Images Detection | |
| runs-on: ubuntu-latest | |
| outputs: | |
| images: ${{ steps.detect.outputs.images }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Detect changed image directories | |
| id: detect | |
| run: | | |
| if [ "${{ github.event_name }}" = "pull_request" ]; then | |
| CHANGED=$(git diff --name-only "origin/${{ github.base_ref }}" "${{ github.sha }}" -- images/ \ | |
| | grep '^images/' \ | |
| | cut -d/ -f2 \ | |
| | sort -u) | |
| else | |
| BEFORE="${{ github.event.before }}" | |
| AFTER="${{ github.sha }}" | |
| # First push to branch or workflow_dispatch has all-zero before SHA | |
| if [ "$BEFORE" = "0000000000000000000000000000000000000000" ] || [ -z "$BEFORE" ]; then | |
| CHANGED=$(ls images/) | |
| else | |
| CHANGED=$(git diff --name-only "$BEFORE" "$AFTER" -- images/ \ | |
| | grep '^images/' \ | |
| | cut -d/ -f2 \ | |
| | sort -u) | |
| fi | |
| fi | |
| # Keep only entries that are actual image directories | |
| VALID="" | |
| for dir in $CHANGED; do | |
| [ -d "images/$dir" ] && VALID="$VALID $dir" | |
| done | |
| IMAGES=$(echo "$VALID" | tr ' ' '\n' | grep -v '^$' | jq -R -s -c 'split("\n") | map(select(length > 0))') | |
| echo "images=$IMAGES" >> "$GITHUB_OUTPUT" | |
| echo "Detected images: $IMAGES" | |
| build: | |
| name: Docker Build ${{ matrix.image }} | |
| needs: [detect-changes, static-checks] | |
| if: needs.detect-changes.outputs.images != '[]' && needs.detect-changes.outputs.images != '' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| packages: write | |
| strategy: | |
| matrix: | |
| image: ${{ fromJson(needs.detect-changes.outputs.images) }} | |
| fail-fast: false | |
| env: | |
| SML_FIRECREST_CLIENT_ID: ${{ secrets.SML_FIRECREST_CLIENT_ID }} | |
| SML_FIRECREST_CLIENT_SECRET: ${{ secrets.SML_FIRECREST_CLIENT_SECRET }} | |
| SML_FIRECREST_TOKEN_URI: ${{ secrets.SML_FIRECREST_TOKEN_URI }} | |
| SML_FIRECREST_URL: ${{ secrets.SML_FIRECREST_URL }} | |
| SML_FIRECREST_SYSTEM: ${{ secrets.SML_FIRECREST_SYSTEM }} | |
| SML_PARTITION: ${{ secrets.SML_PARTITION }} | |
| SML_RESERVATION: ${{ secrets.SML_RESERVATION }} | |
| GHCR_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GHCR_ACTOR: ${{ github.actor }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Restore build cache | |
| id: cache | |
| uses: actions/cache/restore@v4 | |
| with: | |
| path: .build-sentinel | |
| key: build-${{ matrix.image }}-${{ hashFiles(format('images/{0}/**', matrix.image)) }} | |
| - uses: ./.github/actions/setup | |
| if: steps.cache.outputs.cache-hit != 'true' | |
| with: | |
| python-version: "3.12" | |
| - name: Build image and save sqsh | |
| if: steps.cache.outputs.cache-hit != 'true' | |
| run: python .github/scripts/build_image.py "${{ matrix.image }}" | |
| timeout-minutes: 300 | |
| - name: Save build cache | |
| if: steps.cache.outputs.cache-hit != 'true' | |
| run: mkdir -p .build-sentinel && touch .build-sentinel/built | |
| - uses: actions/cache/save@v4 | |
| if: steps.cache.outputs.cache-hit != 'true' | |
| with: | |
| path: .build-sentinel | |
| key: build-${{ matrix.image }}-${{ hashFiles(format('images/{0}/**', matrix.image)) }} | |
| test-lightweight: | |
| name: Integration Tests (lightweight) | |
| needs: [detect-changes, build] | |
| if: | | |
| always() && | |
| needs.build.result != 'failure' && | |
| github.event_name != 'workflow_dispatch' && | |
| !contains(github.event.pull_request.labels.*.name, 'requires-std-tests') && | |
| !contains(github.event.pull_request.labels.*.name, 'requires-comprehensive-tests') | |
| runs-on: ubuntu-latest | |
| env: | |
| SML_CSCS_API_KEY: ${{ secrets.SML_CSCS_API_KEY }} | |
| SML_FIRECREST_CLIENT_ID: ${{ secrets.SML_FIRECREST_CLIENT_ID }} | |
| SML_FIRECREST_CLIENT_SECRET: ${{ secrets.SML_FIRECREST_CLIENT_SECRET }} | |
| SML_FIRECREST_SYSTEM: ${{ secrets.SML_FIRECREST_SYSTEM }} | |
| SML_FIRECREST_TOKEN_URI: ${{ secrets.SML_FIRECREST_TOKEN_URI }} | |
| SML_FIRECREST_URL: ${{ secrets.SML_FIRECREST_URL }} | |
| SML_PARTITION: ${{ secrets.SML_PARTITION }} | |
| SML_RESERVATION: ${{ secrets.SML_RESERVATION }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: ./.github/actions/setup | |
| with: | |
| python-version: "3.12" | |
| - run: make _test-lightweight | |
| test-std: | |
| name: Integration Tests (std) | |
| needs: [detect-changes, build] | |
| if: | | |
| always() && | |
| needs.build.result != 'failure' && | |
| contains(github.event.pull_request.labels.*.name, 'requires-std-tests') && | |
| !contains(github.event.pull_request.labels.*.name, 'requires-comprehensive-tests') | |
| runs-on: ubuntu-latest | |
| env: | |
| SML_CSCS_API_KEY: ${{ secrets.SML_CSCS_API_KEY }} | |
| SML_FIRECREST_CLIENT_ID: ${{ secrets.SML_FIRECREST_CLIENT_ID }} | |
| SML_FIRECREST_CLIENT_SECRET: ${{ secrets.SML_FIRECREST_CLIENT_SECRET }} | |
| SML_FIRECREST_SYSTEM: ${{ secrets.SML_FIRECREST_SYSTEM }} | |
| SML_FIRECREST_TOKEN_URI: ${{ secrets.SML_FIRECREST_TOKEN_URI }} | |
| SML_FIRECREST_URL: ${{ secrets.SML_FIRECREST_URL }} | |
| SML_PARTITION: ${{ secrets.SML_PARTITION }} | |
| SML_RESERVATION: ${{ secrets.SML_RESERVATION }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: ./.github/actions/setup | |
| with: | |
| python-version: "3.12" | |
| - run: make _test-std | |
| test-comprehensive: | |
| name: Integration Tests (comprehensive) | |
| needs: [detect-changes, build] | |
| if: | | |
| always() && | |
| needs.build.result != 'failure' && | |
| (github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'requires-comprehensive-tests')) | |
| runs-on: ubuntu-latest | |
| env: | |
| SML_CSCS_API_KEY: ${{ secrets.SML_CSCS_API_KEY }} | |
| SML_FIRECREST_CLIENT_ID: ${{ secrets.SML_FIRECREST_CLIENT_ID }} | |
| SML_FIRECREST_CLIENT_SECRET: ${{ secrets.SML_FIRECREST_CLIENT_SECRET }} | |
| SML_FIRECREST_SYSTEM: ${{ secrets.SML_FIRECREST_SYSTEM }} | |
| SML_FIRECREST_TOKEN_URI: ${{ secrets.SML_FIRECREST_TOKEN_URI }} | |
| SML_FIRECREST_URL: ${{ secrets.SML_FIRECREST_URL }} | |
| SML_PARTITION: ${{ secrets.SML_PARTITION }} | |
| SML_RESERVATION: ${{ secrets.SML_RESERVATION }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: ./.github/actions/setup | |
| with: | |
| python-version: "3.12" | |
| - run: make _test-comprehensive |