mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
64cb636b06
gha: buildkit: remove "skip-integration-tests" from matrix
112 lines
2.7 KiB
YAML
112 lines
2.7 KiB
YAML
name: buildkit
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
- '[0-9]+.[0-9]{2}'
|
|
pull_request:
|
|
|
|
env:
|
|
BUNDLES_OUTPUT: ./bundles
|
|
|
|
jobs:
|
|
validate-dco:
|
|
uses: ./.github/workflows/.dco.yml
|
|
|
|
build:
|
|
runs-on: ubuntu-20.04
|
|
needs:
|
|
- validate-dco
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v3
|
|
-
|
|
name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
-
|
|
name: Build
|
|
uses: docker/bake-action@v2
|
|
with:
|
|
targets: binary
|
|
-
|
|
name: Upload artifacts
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: binary
|
|
path: ${{ env.BUNDLES_OUTPUT }}
|
|
if-no-files-found: error
|
|
retention-days: 1
|
|
|
|
test:
|
|
needs:
|
|
- build
|
|
runs-on: ubuntu-20.04
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
pkg:
|
|
- client
|
|
- cmd/buildctl
|
|
- solver
|
|
- frontend
|
|
- frontend/dockerfile
|
|
typ:
|
|
- integration
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
path: moby
|
|
-
|
|
name: BuildKit ref
|
|
run: |
|
|
./hack/go-mod-prepare.sh
|
|
# FIXME(thaJeztah) temporarily overriding version to use for tests; remove with the next release of buildkit
|
|
# echo "BUILDKIT_REF=$(./hack/buildkit-ref)" >> $GITHUB_ENV
|
|
echo "BUILDKIT_REF=e27c8e24bb9ee92a170567b8b597201925ae9b8a" >> $GITHUB_ENV
|
|
working-directory: moby
|
|
-
|
|
name: Checkout BuildKit ${{ env.BUILDKIT_REF }}
|
|
uses: actions/checkout@v3
|
|
with:
|
|
repository: "moby/buildkit"
|
|
ref: ${{ env.BUILDKIT_REF }}
|
|
path: buildkit
|
|
-
|
|
name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2
|
|
-
|
|
name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
-
|
|
name: Download binary artifacts
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: binary
|
|
path: ./buildkit/build/moby/
|
|
-
|
|
name: Update daemon.json
|
|
run: |
|
|
sudo rm /etc/docker/daemon.json
|
|
sudo service docker restart
|
|
docker version
|
|
docker info
|
|
-
|
|
name: Test
|
|
run: |
|
|
./hack/test ${{ matrix.typ }}
|
|
env:
|
|
CONTEXT: "."
|
|
TEST_DOCKERD: "1"
|
|
TEST_DOCKERD_BINARY: "./build/moby/binary-daemon/dockerd"
|
|
TESTPKGS: "./${{ matrix.pkg }}"
|
|
TESTFLAGS: "-v --parallel=1 --timeout=30m --run=//worker=dockerd$"
|
|
working-directory: buildkit
|