mirror of
https://github.com/moby/buildkit.git
synced 2026-08-07 00:00:52 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 7.0.0 to 7.0.1.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](9c091bb21b...3d3c42e5aa)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 7.0.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
279 lines
9.2 KiB
YAML
279 lines
9.2 KiB
YAML
name: test-os
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 10 * * *'
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
- 'v[0-9]+.[0-9]+'
|
|
pull_request:
|
|
paths-ignore:
|
|
- 'README.md'
|
|
- 'docs/**'
|
|
- 'frontend/dockerfile/docs/**'
|
|
|
|
env:
|
|
GO_VERSION: "1.26"
|
|
SETUP_BUILDX_VERSION: "edge"
|
|
SETUP_BUILDKIT_IMAGE: "moby/buildkit:latest"
|
|
DESTDIR: "./bin"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-24.04
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
platform:
|
|
- windows/amd64
|
|
- freebsd/amd64
|
|
steps:
|
|
-
|
|
name: Prepare
|
|
run: |
|
|
platform=${{ matrix.platform }}
|
|
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
|
|
-
|
|
name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0
|
|
with:
|
|
version: ${{ env.SETUP_BUILDX_VERSION }}
|
|
driver-opts: image=${{ env.SETUP_BUILDKIT_IMAGE }}
|
|
buildkitd-flags: --debug
|
|
-
|
|
name: Build
|
|
uses: docker/bake-action@d3418bd7d0e9324001bca92fa8ba175ea7e6dc9b # v7.3.0
|
|
with:
|
|
provenance: false
|
|
targets: binaries-for-test
|
|
set: |
|
|
*.platform=${{ matrix.platform }}
|
|
*.cache-from=type=gha,scope=binaries-for-test-${{ env.PLATFORM_PAIR }}
|
|
*.cache-to=type=gha,scope=binaries-for-test-${{ env.PLATFORM_PAIR }},repository=${{ github.repository }},ghtoken=${{ secrets.GITHUB_TOKEN }}
|
|
-
|
|
name: List artifacts
|
|
run: |
|
|
tree -nh ${{ env.DESTDIR }}
|
|
-
|
|
name: Upload artifacts
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
with:
|
|
name: buildkit-${{ env.PLATFORM_PAIR }}
|
|
path: ${{ env.DESTDIR }}/*
|
|
if-no-files-found: error
|
|
retention-days: 1
|
|
|
|
test-windows-amd64:
|
|
runs-on: ${{ matrix.os }}
|
|
needs:
|
|
- build
|
|
env:
|
|
TESTFLAGS: "-v --timeout=60m"
|
|
GOTESTSUM_FORMAT: "standard-verbose"
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [windows-2022]
|
|
worker:
|
|
- containerd
|
|
pkg:
|
|
- ./client#1-4
|
|
- ./client#2-4
|
|
- ./client#3-4
|
|
- ./client#4-4
|
|
- ./cmd/buildctl
|
|
- ./worker/containerd
|
|
- ./solver
|
|
- ./frontend
|
|
- ./frontend/dockerfile#1-12
|
|
- ./frontend/dockerfile#2-12
|
|
- ./frontend/dockerfile#3-12
|
|
- ./frontend/dockerfile#4-12
|
|
- ./frontend/dockerfile#5-12
|
|
- ./frontend/dockerfile#6-12
|
|
- ./frontend/dockerfile#7-12
|
|
- ./frontend/dockerfile#8-12
|
|
- ./frontend/dockerfile#9-12
|
|
- ./frontend/dockerfile#10-12
|
|
- ./frontend/dockerfile#11-12
|
|
- ./frontend/dockerfile#12-12
|
|
include:
|
|
- os: windows-2022
|
|
worker: containerd
|
|
pkg: ./...
|
|
skip-integration-tests: 1
|
|
steps:
|
|
-
|
|
name: Prepare
|
|
run: |
|
|
TESTPKG=$(echo "${{ matrix.pkg }}" | awk '-F#' '{print $1}')
|
|
echo "TESTPKG=$TESTPKG" >> $GITHUB_ENV
|
|
echo "TEST_REPORT_NAME=${{ github.job }}-$(echo "${{ matrix.pkg }}-${{ matrix.skip-integration-tests }}-${{ matrix.worker }}" | tr -dc '[:alnum:]-\n\r' | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV
|
|
testFlags="${{ env.TESTFLAGS }}"
|
|
testSlice=$(echo "${{ matrix.pkg }}" | awk '-F#' '{print $2}')
|
|
testSliceOffset=""
|
|
if [ -n "$testSlice" ]; then
|
|
testSliceOffset="slice=$testSlice/"
|
|
fi
|
|
if [ -n "${{ matrix.worker }}" ]; then
|
|
testFlags="${testFlags} --run=TestIntegration/$testSliceOffset.*/worker=${{ matrix.worker }}"
|
|
fi
|
|
echo "TESTFLAGS=${testFlags}" >> $GITHUB_ENV
|
|
shell: bash
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
-
|
|
name: Expose GitHub Runtime
|
|
uses: crazy-max/ghaction-github-runtime@04d248b84655b509d8c44dc1d6f990c879747487 # v4.0.0
|
|
-
|
|
name: Set up Go
|
|
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
|
|
with:
|
|
go-version: "${{ env.GO_VERSION }}"
|
|
cache: false
|
|
-
|
|
name: Download artifacts
|
|
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
|
|
with:
|
|
name: buildkit-windows-amd64
|
|
path: ${{ github.workspace }}\bin
|
|
-
|
|
name: Add bin folder to Path
|
|
run: |
|
|
echo "${{ github.workspace }}\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
|
|
-
|
|
name: Test
|
|
env:
|
|
TMPDIR: ${{ runner.temp }}
|
|
SKIP_INTEGRATION_TESTS: ${{ matrix.skip-integration-tests }}
|
|
run: |
|
|
mkdir -p ./bin/testreports
|
|
gotestsum \
|
|
--jsonfile="./bin/testreports/go-test-report-${{ env.TEST_REPORT_NAME }}.json" \
|
|
--junitfile="./bin/testreports/junit-report-${{ env.TEST_REPORT_NAME }}.xml" \
|
|
--packages="${{ env.TESTPKG }}" \
|
|
-- \
|
|
"-mod=vendor" \
|
|
"-coverprofile" "./bin/testreports/coverage-${{ env.TEST_REPORT_NAME }}.txt" \
|
|
"-covermode" "atomic" ${{ env.TESTFLAGS }}
|
|
shell: bash
|
|
-
|
|
name: Send to Codecov
|
|
if: always()
|
|
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
|
|
with:
|
|
directory: ./bin/testreports
|
|
env_vars: RUNNER_OS
|
|
flags: unit
|
|
disable_file_fixes: true
|
|
token: ${{ secrets.CODECOV_TOKEN }} # used to upload coverage reports: https://github.com/moby/buildkit/pull/4660#issue-2142122533
|
|
-
|
|
name: Generate annotations
|
|
if: always()
|
|
uses: crazy-max/.github/.github/actions/gotest-annotations@46267a6e61cd56aac2fc79943df180152f4c89d6 # v1.10.1
|
|
with:
|
|
directory: ./bin/testreports
|
|
-
|
|
name: Upload test reports
|
|
if: always()
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
with:
|
|
name: test-reports-${{ matrix.os }}-${{ env.TEST_REPORT_NAME }}
|
|
path: ./bin/testreports
|
|
retention-days: 1
|
|
|
|
test-freebsd-amd64:
|
|
runs-on: ubuntu-22.04
|
|
needs:
|
|
- build
|
|
env:
|
|
GOOS: freebsd
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
-
|
|
name: Download artifacts
|
|
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
|
|
with:
|
|
name: buildkit-freebsd-amd64
|
|
path: ${{ env.DESTDIR }}
|
|
-
|
|
name: Cache Vagrant boxes
|
|
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
|
|
with:
|
|
path: ~/.vagrant.d/boxes
|
|
key: ${{ runner.os }}-vagrant-${{ hashFiles('hack/Vagrantfile.freebsd') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-vagrant-
|
|
-
|
|
name: Install vagrant
|
|
run: |
|
|
set -x
|
|
wget -O - https://apt.releases.hashicorp.com/gpg | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg
|
|
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
|
|
sudo apt-get update
|
|
sudo apt-get install -y libvirt-dev libvirt-daemon libvirt-daemon-system vagrant vagrant-libvirt ruby-libvirt
|
|
sudo systemctl enable --now libvirtd
|
|
sudo chmod a+rw /var/run/libvirt/libvirt-sock
|
|
vagrant plugin install vagrant-libvirt
|
|
vagrant --version
|
|
-
|
|
name: Set up vagrant
|
|
run: |
|
|
ln -sf hack/Vagrantfile.freebsd Vagrantfile
|
|
vagrant up --no-tty
|
|
-
|
|
name: Smoke test
|
|
uses: nick-fields/retry@ad984534de44a9489a53aefd81eb77f87c70dc60 # v4.0.0
|
|
with:
|
|
timeout_minutes: 20
|
|
max_attempts: 5
|
|
command: |
|
|
vagrant up --provision-with=test-smoke
|
|
-
|
|
name: BuildKit logs
|
|
if: always()
|
|
run: |
|
|
vagrant ssh -- "sudo cat /vagrant/.tmp/logs/buildkitd"
|
|
-
|
|
name: Containerd logs
|
|
if: always()
|
|
run: |
|
|
vagrant ssh -- "sudo cat /vagrant/.tmp/logs/containerd"
|
|
|
|
sandbox-build:
|
|
if: ${{ github.repository == 'moby/buildkit' }}
|
|
runs-on: ${{ matrix.platform == 'linux/arm64' && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
platform:
|
|
- linux/amd64
|
|
- linux/arm64
|
|
steps:
|
|
-
|
|
name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0
|
|
with:
|
|
version: ${{ env.SETUP_BUILDX_VERSION }}
|
|
driver-opts: image=${{ env.SETUP_BUILDKIT_IMAGE }}
|
|
buildkitd-flags: --debug
|
|
-
|
|
name: Build
|
|
uses: docker/bake-action@d3418bd7d0e9324001bca92fa8ba175ea7e6dc9b # v7.3.0
|
|
with:
|
|
targets: integration-tests-base
|
|
set: |
|
|
*.platform=${{ matrix.platform }}
|