| name: test |
| |
| concurrency: |
| group: ${{ github.workflow }}-${{ github.ref }} |
| # Cancel stale PR runs without interrupting push, tag, scheduled, or |
| # manually dispatched validation. |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} |
| |
| permissions: |
| contents: read |
| |
| on: |
| workflow_dispatch: |
| push: |
| branches: |
| - 'master' |
| - '[0-9]+.[0-9]+' |
| - '[0-9]+.x' |
| pull_request: |
| |
| env: |
| GO_VERSION: "1.26.7" |
| GIT_PAGER: "cat" |
| PAGER: "cat" |
| SETUP_BUILDX_VERSION: edge |
| SETUP_BUILDKIT_IMAGE: moby/buildkit:latest |
| |
| jobs: |
| validate-dco: |
| uses: ./.github/workflows/.dco.yml |
| |
| build-dev: |
| runs-on: ${{ matrix.arch == 'arm64' && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }} |
| timeout-minutes: 120 # guardrails timeout for the whole job |
| needs: |
| - validate-dco |
| strategy: |
| fail-fast: false |
| matrix: |
| arch: |
| - amd64 |
| - arm64 |
| mode: |
| - "" |
| - systemd |
| - firewalld |
| steps: |
| - |
| name: Prepare |
| env: |
| MODE: ${{ matrix.mode }} |
| run: | |
| if [ "$MODE" = "systemd" ]; then |
| echo "SYSTEMD=true" >> $GITHUB_ENV |
| fi |
| - |
| name: Set up Docker Buildx |
| uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0 |
| with: |
| version: ${{ env.SETUP_BUILDX_VERSION }} |
| driver-opts: image=${{ env.SETUP_BUILDKIT_IMAGE }} |
| buildkitd-flags: --debug |
| - |
| name: Build dev image |
| uses: docker/bake-action@d3418bd7d0e9324001bca92fa8ba175ea7e6dc9b # v7.3.0 |
| with: |
| targets: dev |
| set: | |
| *.cache-from=type=gha,scope=${{ matrix.mode == '' && format('dev-{0}', matrix.arch) || format('dev-{0}-{1}', matrix.mode, matrix.arch) }} |
| *.cache-to=type=gha,scope=${{ matrix.mode == '' && format('dev-{0}', matrix.arch) || format('dev-{0}-{1}', matrix.mode, matrix.arch) }} |
| ${{ matrix.mode == '' && format('*.output=type=docker,dest=/tmp/dev-image-{0}.tar', matrix.arch) || '*.output=type=cacheonly' }} |
| - |
| name: Cache dev image |
| if: matrix.mode == '' |
| uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 |
| with: |
| key: dev-image-${{ matrix.arch }}-${{ github.run_id }} |
| path: /tmp/dev-image-${{ matrix.arch }}.tar |
| |
| test: |
| name: test (${{ matrix.arch }}, ${{ matrix.storage }}) |
| if: ${{ github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'ci/validate-only') }} |
| needs: |
| - build-dev |
| - validate-dco |
| uses: ./.github/workflows/.test.yml |
| strategy: |
| fail-fast: false |
| matrix: |
| include: |
| # Only amd64 gets the full matrix |
| - arch: amd64 |
| storage: snapshotter |
| runnerSuffix: "" |
| extraModes: '["rootless", "systemd", "rootless-systemd", "iptables+firewalld", "nftables", "nftables+firewalld", "embedded"]' |
| - arch: amd64 |
| storage: graphdriver |
| runnerSuffix: "" |
| extraModes: '["rootless", "systemd", "userns"]' |
| - arch: arm64 |
| storage: snapshotter |
| runnerSuffix: "-arm" |
| extraModes: '[]' |
| with: |
| arch: ${{ matrix.arch }} |
| storage: ${{ matrix.storage }} |
| runnerSuffix: ${{ matrix.runnerSuffix }} |
| extraModes: ${{ matrix.extraModes }} |
| secrets: |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |
| |
| test-unit: |
| if: ${{ github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'ci/validate-only') }} |
| needs: |
| - build-dev |
| - validate-dco |
| uses: ./.github/workflows/.test-unit.yml |
| strategy: |
| fail-fast: false |
| matrix: |
| include: |
| - arch: amd64 |
| runnerSuffix: "" |
| - arch: arm64 |
| runnerSuffix: "-arm" |
| with: |
| arch: ${{ matrix.arch }} |
| runnerSuffix: ${{ matrix.runnerSuffix }} |
| secrets: |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |
| |
| validate-prepare: |
| runs-on: ubuntu-24.04 |
| timeout-minutes: 10 # guardrails timeout for the whole job |
| needs: |
| - validate-dco |
| outputs: |
| matrix: ${{ steps.scripts.outputs.matrix }} |
| steps: |
| - |
| name: Checkout |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 |
| - |
| name: Create matrix |
| id: scripts |
| run: | |
| # Select all validate scripts, excluding checks that are already run |
| # elsewhere and/or require pull-request metadata (dco, pr-gh-references). |
| scripts=$(cd ./hack/validate && jq -nc '$ARGS.positional - ["all", "default", "dco", "pr-gh-references"] | map(select(test("[.]")|not)) + ["generate-files"]' --args *) |
| echo "matrix=$scripts" >> $GITHUB_OUTPUT |
| echo "$scripts" |
| |
| validate: |
| runs-on: ubuntu-24.04 |
| timeout-minutes: 30 # guardrails timeout for the whole job |
| needs: |
| - validate-prepare |
| - build-dev |
| strategy: |
| matrix: |
| script: ${{ fromJson(needs.validate-prepare.outputs.matrix) }} |
| steps: |
| - |
| name: Checkout |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 |
| with: |
| fetch-depth: 0 |
| - |
| name: Set up runner |
| uses: ./.github/actions/setup-runner |
| - |
| name: Set up Docker Buildx |
| uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0 |
| with: |
| version: ${{ env.SETUP_BUILDX_VERSION }} |
| driver: docker |
| buildkitd-flags: --debug |
| - |
| name: Restore dev image |
| id: restore-dev-image |
| uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 |
| with: |
| key: dev-image-amd64-${{ github.run_id }} |
| path: /tmp/dev-image-amd64.tar |
| - |
| name: Load dev image |
| if: steps.restore-dev-image.outputs.cache-hit == 'true' |
| run: | |
| docker load -i /tmp/dev-image-amd64.tar |
| - |
| # Fall back to building the dev image if the cache could not be |
| # restored (e.g. cache miss or a rate-limited download). |
| name: Build dev image |
| if: steps.restore-dev-image.outputs.cache-hit != 'true' |
| uses: docker/bake-action@d3418bd7d0e9324001bca92fa8ba175ea7e6dc9b # v7.3.0 |
| with: |
| targets: dev |
| set: | |
| dev.cache-from=type=gha,scope=dev-amd64 |
| - |
| name: Validate |
| env: |
| SCRIPT: ${{ matrix.script }} |
| run: | |
| make -o build "validate-${SCRIPT}" |
| |
| validate-api-swagger: |
| runs-on: ubuntu-24.04 |
| timeout-minutes: 10 # guardrails timeout for the whole job |
| defaults: |
| run: |
| working-directory: api |
| needs: |
| - validate-dco |
| name: validate (api-swagger) |
| steps: |
| - |
| name: Checkout |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 |
| - |
| name: Validate swagger |
| run: | |
| make validate-swagger |
| make validate-swagger-gen |
| |
| smoke-prepare: |
| runs-on: ubuntu-24.04 |
| timeout-minutes: 10 # guardrails timeout for the whole job |
| if: ${{ github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'ci/validate-only') }} |
| needs: |
| - validate-dco |
| outputs: |
| includes: ${{ steps.gen.outputs.matrix }} |
| steps: |
| - |
| name: Checkout |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 |
| - |
| name: Create matrix |
| id: gen |
| uses: docker/bake-action/subaction/matrix@d3418bd7d0e9324001bca92fa8ba175ea7e6dc9b # v7.3.0 |
| with: |
| target: binary-smoketest |
| fields: platforms |
| |
| smoke: |
| runs-on: ubuntu-24.04 |
| timeout-minutes: 20 # guardrails timeout for the whole job |
| if: ${{ github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'ci/validate-only') }} |
| needs: |
| - smoke-prepare |
| strategy: |
| fail-fast: false |
| matrix: |
| include: ${{ fromJson(needs.smoke-prepare.outputs.includes) }} |
| steps: |
| - |
| name: Prepare |
| env: |
| PLATFORM: ${{ matrix.platforms }} |
| run: | |
| echo "PLATFORM_PAIR=${PLATFORM//\//-}" >> $GITHUB_ENV |
| - |
| name: Set up QEMU |
| uses: docker/setup-qemu-action@96fe6ef7f33517b61c61be40b68a1882f3264fb8 # v4.2.0 |
| - |
| name: Set up Docker Buildx |
| uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0 |
| with: |
| version: ${{ env.SETUP_BUILDX_VERSION }} |
| driver-opts: image=${{ env.SETUP_BUILDKIT_IMAGE }} |
| buildkitd-flags: --debug |
| - |
| name: Test |
| uses: docker/bake-action@d3418bd7d0e9324001bca92fa8ba175ea7e6dc9b # v7.3.0 |
| with: |
| targets: ${{ matrix.target }} |
| set: | |
| *.platform=${{ matrix.platforms }} |