|
@@ -0,0 +1,268 @@
|
|
|
+name: test
|
|
|
+
|
|
|
+concurrency:
|
|
|
+ group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
+ cancel-in-progress: true
|
|
|
+
|
|
|
+on:
|
|
|
+ workflow_dispatch:
|
|
|
+ push:
|
|
|
+ branches:
|
|
|
+ - 'master'
|
|
|
+ - '[0-9]+.[0-9]{2}'
|
|
|
+ tags:
|
|
|
+ - 'v*'
|
|
|
+ pull_request:
|
|
|
+
|
|
|
+env:
|
|
|
+ GO_VERSION: 1.19.1
|
|
|
+ GOTESTLIST_VERSION: v0.2.0
|
|
|
+ ITG_CLI_MATRIX_SIZE: 6
|
|
|
+ BUILDX: docker buildx
|
|
|
+ USE_BUILDX: 1
|
|
|
+ DOCKER_EXPERIMENTAL: 1
|
|
|
+ DOCKER_GRAPHDRIVER: overlay2
|
|
|
+
|
|
|
+jobs:
|
|
|
+ build-dev:
|
|
|
+ runs-on: ubuntu-20.04
|
|
|
+ strategy:
|
|
|
+ fail-fast: false
|
|
|
+ matrix:
|
|
|
+ mode:
|
|
|
+ - ""
|
|
|
+ - systemd
|
|
|
+ steps:
|
|
|
+ -
|
|
|
+ name: Prepare
|
|
|
+ run: |
|
|
|
+ if [ "${{ matrix.mode }}" = "systemd" ]; then
|
|
|
+ echo "SYSTEMD=true" >> $GITHUB_ENV
|
|
|
+ fi
|
|
|
+ -
|
|
|
+ name: Checkout
|
|
|
+ uses: actions/checkout@v3
|
|
|
+ -
|
|
|
+ name: Set up Docker Buildx
|
|
|
+ uses: docker/setup-buildx-action@v2
|
|
|
+ -
|
|
|
+ name: Build dev image
|
|
|
+ uses: docker/bake-action@v2
|
|
|
+ with:
|
|
|
+ targets: dev
|
|
|
+ set: |
|
|
|
+ *.cache-from=type=gha,scope=dev${{ matrix.mode }}
|
|
|
+ *.cache-to=type=gha,scope=dev${{ matrix.mode }},mode=max
|
|
|
+ *.output=type=cacheonly
|
|
|
+
|
|
|
+ unit:
|
|
|
+ runs-on: ubuntu-20.04
|
|
|
+ needs:
|
|
|
+ - build-dev
|
|
|
+ steps:
|
|
|
+ -
|
|
|
+ name: Checkout
|
|
|
+ uses: actions/checkout@v3
|
|
|
+ -
|
|
|
+ name: Set up runner
|
|
|
+ uses: ./.github/actions/setup-runner
|
|
|
+ -
|
|
|
+ name: Set up Docker Buildx
|
|
|
+ uses: docker/setup-buildx-action@v2
|
|
|
+ -
|
|
|
+ name: Build dev image
|
|
|
+ uses: docker/bake-action@v2
|
|
|
+ with:
|
|
|
+ targets: dev
|
|
|
+ set: |
|
|
|
+ dev.cache-from=type=gha,scope=dev
|
|
|
+ -
|
|
|
+ name: Test
|
|
|
+ run: |
|
|
|
+ make -o build test-unit
|
|
|
+
|
|
|
+ docker-py:
|
|
|
+ runs-on: ubuntu-20.04
|
|
|
+ needs:
|
|
|
+ - build-dev
|
|
|
+ steps:
|
|
|
+ -
|
|
|
+ name: Checkout
|
|
|
+ uses: actions/checkout@v3
|
|
|
+ -
|
|
|
+ name: Set up runner
|
|
|
+ uses: ./.github/actions/setup-runner
|
|
|
+ -
|
|
|
+ name: Set up Docker Buildx
|
|
|
+ uses: docker/setup-buildx-action@v2
|
|
|
+ -
|
|
|
+ name: Build dev image
|
|
|
+ uses: docker/bake-action@v2
|
|
|
+ with:
|
|
|
+ targets: dev
|
|
|
+ set: |
|
|
|
+ dev.cache-from=type=gha,scope=dev
|
|
|
+ -
|
|
|
+ name: Test
|
|
|
+ run: |
|
|
|
+ make -o build test-docker-py
|
|
|
+ -
|
|
|
+ name: Test daemon logs
|
|
|
+ if: always()
|
|
|
+ run: |
|
|
|
+ cat bundles/test-docker-py/docker.log
|
|
|
+
|
|
|
+ integration-flaky:
|
|
|
+ runs-on: ubuntu-20.04
|
|
|
+ needs:
|
|
|
+ - build-dev
|
|
|
+ steps:
|
|
|
+ -
|
|
|
+ name: Checkout
|
|
|
+ uses: actions/checkout@v3
|
|
|
+ -
|
|
|
+ name: Set up runner
|
|
|
+ uses: ./.github/actions/setup-runner
|
|
|
+ -
|
|
|
+ name: Set up Docker Buildx
|
|
|
+ uses: docker/setup-buildx-action@v2
|
|
|
+ -
|
|
|
+ name: Build dev image
|
|
|
+ uses: docker/bake-action@v2
|
|
|
+ with:
|
|
|
+ targets: dev
|
|
|
+ set: |
|
|
|
+ dev.cache-from=type=gha,scope=dev
|
|
|
+ -
|
|
|
+ name: Test
|
|
|
+ run: |
|
|
|
+ make -o build test-integration-flaky
|
|
|
+ env:
|
|
|
+ TEST_SKIP_INTEGRATION_CLI: 1
|
|
|
+
|
|
|
+ integration:
|
|
|
+ runs-on: ${{ matrix.os }}
|
|
|
+ needs:
|
|
|
+ - build-dev
|
|
|
+ strategy:
|
|
|
+ fail-fast: false
|
|
|
+ matrix:
|
|
|
+ os:
|
|
|
+ - ubuntu-20.04
|
|
|
+ - ubuntu-22.04
|
|
|
+ mode:
|
|
|
+ - ""
|
|
|
+ - rootless
|
|
|
+ - systemd
|
|
|
+ #- rootless-systemd FIXME: https://github.com/moby/moby/issues/44084
|
|
|
+ steps:
|
|
|
+ -
|
|
|
+ name: Checkout
|
|
|
+ uses: actions/checkout@v3
|
|
|
+ -
|
|
|
+ name: Set up runner
|
|
|
+ uses: ./.github/actions/setup-runner
|
|
|
+ -
|
|
|
+ name: Prepare
|
|
|
+ run: |
|
|
|
+ CACHE_DEV_SCOPE=dev
|
|
|
+ if [[ "${{ matrix.mode }}" == *"rootless"* ]]; then
|
|
|
+ echo "DOCKER_ROOTLESS=1" >> $GITHUB_ENV
|
|
|
+ fi
|
|
|
+ if [[ "${{ matrix.mode }}" == *"systemd"* ]]; then
|
|
|
+ echo "SYSTEMD=true" >> $GITHUB_ENV
|
|
|
+ CACHE_DEV_SCOPE="${CACHE_DEV_SCOPE}systemd"
|
|
|
+ fi
|
|
|
+ echo "CACHE_DEV_SCOPE=${CACHE_DEV_SCOPE}" >> $GITHUB_ENV
|
|
|
+ -
|
|
|
+ name: Set up Docker Buildx
|
|
|
+ uses: docker/setup-buildx-action@v2
|
|
|
+ -
|
|
|
+ name: Build dev image
|
|
|
+ uses: docker/bake-action@v2
|
|
|
+ with:
|
|
|
+ targets: dev
|
|
|
+ set: |
|
|
|
+ dev.cache-from=type=gha,scope=${{ env.CACHE_DEV_SCOPE }}
|
|
|
+ -
|
|
|
+ name: Test
|
|
|
+ run: |
|
|
|
+ make -o build test-integration
|
|
|
+ env:
|
|
|
+ TEST_SKIP_INTEGRATION_CLI: 1
|
|
|
+ -
|
|
|
+ name: Test daemon logs
|
|
|
+ if: always()
|
|
|
+ run: |
|
|
|
+ cat bundles/test-integration/docker.log
|
|
|
+
|
|
|
+ integration-cli-prepare:
|
|
|
+ runs-on: ubuntu-20.04
|
|
|
+ outputs:
|
|
|
+ matrix: ${{ steps.tests.outputs.matrix }}
|
|
|
+ steps:
|
|
|
+ -
|
|
|
+ name: Checkout
|
|
|
+ uses: actions/checkout@v3
|
|
|
+ -
|
|
|
+ name: Set up Go
|
|
|
+ uses: actions/setup-go@v3
|
|
|
+ with:
|
|
|
+ go-version: ${{ env.GO_VERSION }}
|
|
|
+ -
|
|
|
+ name: Install gotestlist
|
|
|
+ run:
|
|
|
+ go install github.com/crazy-max/gotestlist/cmd/gotestlist@${{ env.GOTESTLIST_VERSION }}
|
|
|
+ -
|
|
|
+ name: Create matrix
|
|
|
+ id: tests
|
|
|
+ working-directory: ./integration-cli
|
|
|
+ run: |
|
|
|
+ # Distribute integration-cli tests for the matrix in integration-test job.
|
|
|
+ # Also prepend ./... to the matrix. This is a special case to run "Test integration" step exclusively.
|
|
|
+ matrix="$(gotestlist -d ${{ env.ITG_CLI_MATRIX_SIZE }} ./...)"
|
|
|
+ matrix="$(echo "$matrix" | jq -c '. |= ["./..."] + .')"
|
|
|
+ echo "::set-output name=matrix::$matrix"
|
|
|
+ -
|
|
|
+ name: Show matrix
|
|
|
+ run: |
|
|
|
+ echo ${{ steps.tests.outputs.matrix }}
|
|
|
+
|
|
|
+ integration-cli:
|
|
|
+ runs-on: ubuntu-20.04
|
|
|
+ needs:
|
|
|
+ - build-dev
|
|
|
+ - integration-cli-prepare
|
|
|
+ strategy:
|
|
|
+ fail-fast: false
|
|
|
+ matrix:
|
|
|
+ test: ${{ fromJson(needs.integration-cli-prepare.outputs.matrix) }}
|
|
|
+ steps:
|
|
|
+ -
|
|
|
+ name: Checkout
|
|
|
+ uses: actions/checkout@v3
|
|
|
+ -
|
|
|
+ name: Set up runner
|
|
|
+ uses: ./.github/actions/setup-runner
|
|
|
+ -
|
|
|
+ name: Set up Docker Buildx
|
|
|
+ uses: docker/setup-buildx-action@v2
|
|
|
+ -
|
|
|
+ name: Build dev image
|
|
|
+ uses: docker/bake-action@v2
|
|
|
+ with:
|
|
|
+ targets: dev
|
|
|
+ set: |
|
|
|
+ dev.cache-from=type=gha,scope=dev
|
|
|
+ -
|
|
|
+ name: Test
|
|
|
+ run: |
|
|
|
+ make -o build test-integration
|
|
|
+ env:
|
|
|
+ TEST_SKIP_INTEGRATION: 1
|
|
|
+ TESTFLAGS: "-test.run (${{ matrix.test }})/"
|
|
|
+ -
|
|
|
+ name: Test daemon logs
|
|
|
+ if: always()
|
|
|
+ run: |
|
|
|
+ cat bundles/test-integration/docker.log
|