Merge pull request #3221 from crazy-max/etcd-update #345
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: | |
| - master | |
| - main | |
| pull_request: | |
| env: | |
| DOCKER_SWARMKIT_USE_CONTAINER: 1 | |
| IMAGE_NAME: moby/swarmkit | |
| jobs: | |
| build-dev: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - | |
| 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 | |
| test: | |
| runs-on: ubuntu-22.04 | |
| needs: | |
| - build-dev | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| target: | |
| - coverage | |
| - coverage-integration | |
| - swarmd-tests | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - | |
| 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 | |
| - | |
| name: Test | |
| run: | | |
| make IMAGE_NAME=$IMAGE_NAME ${{ matrix.target }} | |
| - | |
| if: ${{ startsWith(matrix.target, 'coverage') }} | |
| name: Send to Codecov | |
| uses: codecov/codecov-action@v3 | |
| with: | |
| env_vars: RUNNER_OS | |
| flags: ${{ matrix.target }} |