Merge pull request #46118 from thaJeztah/bump_containerd_1.6.22 #13
This file contains 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: buildkit | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'master' | |
- '[0-9]+.[0-9]+' | |
pull_request: | |
env: | |
GO_VERSION: "1.20.6" | |
DESTDIR: ./build | |
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.DESTDIR }} | |
if-no-files-found: error | |
retention-days: 1 | |
test: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 120 | |
needs: | |
- build | |
strategy: | |
fail-fast: false | |
matrix: | |
worker: | |
- dockerd | |
- dockerd-containerd | |
pkg: | |
- client | |
- cmd/buildctl | |
- solver | |
- frontend | |
- frontend/dockerfile | |
typ: | |
- integration | |
steps: | |
- | |
name: Prepare | |
run: | | |
disabledFeatures="cache_backend_azblob,cache_backend_s3" | |
if [ "${{ matrix.worker }}" = "dockerd" ]; then | |
disabledFeatures="${disabledFeatures},merge_diff" | |
fi | |
echo "BUILDKIT_TEST_DISABLE_FEATURES=${disabledFeatures}" >> $GITHUB_ENV | |
- | |
name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
path: moby | |
- | |
name: BuildKit ref | |
run: | | |
echo "$(./hack/buildkit-ref)" >> $GITHUB_ENV | |
working-directory: moby | |
- | |
name: Checkout BuildKit ${{ env.BUILDKIT_REF }} | |
uses: actions/checkout@v3 | |
with: | |
repository: ${{ env.BUILDKIT_REPO }} | |
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 -f /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/dockerd" | |
TESTPKGS: "./${{ matrix.pkg }}" | |
# Skip buildkit tests checking the digest (see https://github.com/moby/buildkit/pull/3736) | |
TESTFLAGS: "-v --parallel=1 --timeout=30m --run=/^Test([^R]|.[^e]|..[^p]|...[^r]|....[^o]|.....[^S])/worker=${{ matrix.worker }}$" | |
working-directory: buildkit |