| name: ci |
| |
| concurrency: |
| group: ${{ github.workflow }}-${{ github.ref }} |
| cancel-in-progress: true |
| |
| permissions: |
| contents: read |
| |
| on: |
| workflow_dispatch: |
| push: |
| branches: |
| - 'master' |
| - '[0-9]+.[0-9]+' |
| - '[0-9]+.x' |
| pull_request: |
| |
| env: |
| DESTDIR: ./build |
| SETUP_BUILDX_VERSION: edge |
| SETUP_BUILDKIT_IMAGE: moby/buildkit:latest |
| |
| jobs: |
| validate-dco: |
| uses: ./.github/workflows/.dco.yml |
| |
| build: |
| runs-on: ubuntu-24.04 |
| timeout-minutes: 20 # guardrails timeout for the whole job |
| needs: |
| - validate-dco |
| strategy: |
| fail-fast: false |
| matrix: |
| target: |
| - binary |
| - dynbinary |
| steps: |
| - |
| name: Set up Docker Buildx |
| uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0 |
| with: |
| version: ${{ env.SETUP_BUILDX_VERSION }} |
| driver-opts: image=${{ env.SETUP_BUILDKIT_IMAGE }} |
| buildkitd-flags: --debug |
| - |
| name: Build |
| uses: docker/bake-action@a66e1c87e2eca0503c343edf1d208c716d54b8a8 # v7.1.0 |
| with: |
| targets: ${{ matrix.target }} |
| - |
| name: List artifacts |
| run: | |
| tree -nh ${{ env.DESTDIR }} |
| - |
| name: Check artifacts |
| run: | |
| find ${{ env.DESTDIR }} -type f -exec file -e ascii -- {} + |
| |
| prepare-cross: |
| 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: |
| - validate-dco |
| outputs: |
| includes: ${{ steps.gen.outputs.matrix }} |
| steps: |
| - |
| name: Checkout |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 |
| - |
| name: Create matrix |
| id: gen |
| uses: docker/bake-action/subaction/matrix@a66e1c87e2eca0503c343edf1d208c716d54b8a8 # v7.1.0 |
| with: |
| target: binary-cross |
| fields: platforms |
| |
| cross: |
| 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: |
| - validate-dco |
| - prepare-cross |
| strategy: |
| fail-fast: false |
| matrix: |
| include: ${{ fromJson(needs.prepare-cross.outputs.includes) }} |
| steps: |
| - |
| name: Prepare |
| env: |
| PLATFORM: ${{ matrix.platforms }} |
| run: | |
| echo "PLATFORM_PAIR=${PLATFORM//\//-}" >> $GITHUB_ENV |
| - |
| name: Set up Docker Buildx |
| uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0 |
| with: |
| version: ${{ env.SETUP_BUILDX_VERSION }} |
| driver-opts: image=${{ env.SETUP_BUILDKIT_IMAGE }} |
| buildkitd-flags: --debug |
| - |
| name: Build |
| uses: docker/bake-action@a66e1c87e2eca0503c343edf1d208c716d54b8a8 # v7.1.0 |
| with: |
| targets: ${{ matrix.target }} |
| set: | |
| *.platform=${{ matrix.platforms }} |
| - |
| name: List artifacts |
| run: | |
| tree -nh ${{ env.DESTDIR }} |
| - |
| name: Check artifacts |
| run: | |
| find ${{ env.DESTDIR }} -type f -exec file -e ascii -- {} + |
| |
| govulncheck: |
| runs-on: ubuntu-24.04 |
| timeout-minutes: 120 # guardrails timeout for the whole job |
| # Always run security checks, even with 'ci/validate-only' label |
| permissions: |
| contents: read # same as global permission |
| security-events: write # required to write sarif report |
| steps: |
| - |
| name: Set up Docker Buildx |
| uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0 |
| with: |
| version: ${{ env.SETUP_BUILDX_VERSION }} |
| driver-opts: image=${{ env.SETUP_BUILDKIT_IMAGE }} |
| buildkitd-flags: --debug |
| - |
| name: Run |
| uses: docker/bake-action@a66e1c87e2eca0503c343edf1d208c716d54b8a8 # v7.1.0 |
| with: |
| targets: govulncheck |
| env: |
| GOVULNCHECK_FORMAT: sarif |
| - |
| name: Upload SARIF report |
| if: ${{ github.event_name != 'pull_request' && github.repository == 'moby/moby' }} |
| uses: github/codeql-action/upload-sarif@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4.35.2 |
| with: |
| sarif_file: ${{ env.DESTDIR }}/govulncheck.out |
| |
| build-dind: |
| runs-on: ubuntu-24.04 |
| if: ${{ github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'ci/validate-only') }} |
| needs: |
| - validate-dco |
| steps: |
| - |
| name: Set up Docker Buildx |
| uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0 |
| with: |
| version: ${{ env.SETUP_BUILDX_VERSION }} |
| driver-opts: image=${{ env.SETUP_BUILDKIT_IMAGE }} |
| buildkitd-flags: --debug |
| - |
| name: Build dind image |
| uses: docker/bake-action@a66e1c87e2eca0503c343edf1d208c716d54b8a8 # v7.1.0 |
| with: |
| targets: dind |
| set: | |
| *.output=type=cacheonly |