2022-08-27 09:05:22 -04:00
|
|
|
name: test
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
2022-09-20 15:16:13 -04:00
|
|
|
- '[0-9]+.[0-9]+'
|
2022-08-27 09:05:22 -04:00
|
|
|
tags:
|
|
|
|
- 'v*'
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
env:
|
2022-11-01 16:54:48 -04:00
|
|
|
GO_VERSION: 1.19.3
|
2022-08-27 09:05:22 -04:00
|
|
|
GOTESTLIST_VERSION: v0.2.0
|
2022-09-09 12:52:28 -04:00
|
|
|
TESTSTAT_VERSION: v0.1.3
|
2022-08-27 09:05:22 -04:00
|
|
|
ITG_CLI_MATRIX_SIZE: 6
|
|
|
|
BUILDX: docker buildx
|
|
|
|
USE_BUILDX: 1
|
|
|
|
DOCKER_EXPERIMENTAL: 1
|
|
|
|
DOCKER_GRAPHDRIVER: overlay2
|
|
|
|
|
|
|
|
jobs:
|
2022-09-10 09:07:46 -04:00
|
|
|
validate-dco:
|
|
|
|
uses: ./.github/workflows/.dco.yml
|
|
|
|
|
2022-08-27 09:05:22 -04:00
|
|
|
build-dev:
|
|
|
|
runs-on: ubuntu-20.04
|
2022-09-10 09:07:46 -04:00
|
|
|
needs:
|
|
|
|
- validate-dco
|
2022-08-27 09:05:22 -04:00
|
|
|
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
|
|
|
|
|
2022-09-10 09:10:44 -04:00
|
|
|
validate-prepare:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
needs:
|
|
|
|
- validate-dco
|
|
|
|
outputs:
|
|
|
|
matrix: ${{ steps.scripts.outputs.matrix }}
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
-
|
|
|
|
name: Create matrix
|
|
|
|
id: scripts
|
|
|
|
run: |
|
|
|
|
scripts=$(jq -ncR '[inputs]' <<< "$(ls -I .validate -I all -I default -I dco -I golangci-lint.yml -I yamllint.yaml -A ./hack/validate/)")
|
|
|
|
echo "::set-output name=matrix::$scripts"
|
|
|
|
-
|
|
|
|
name: Show matrix
|
|
|
|
run: |
|
|
|
|
echo ${{ steps.scripts.outputs.matrix }}
|
|
|
|
|
2022-09-08 15:27:41 -04:00
|
|
|
validate:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
needs:
|
2022-09-10 09:10:44 -04:00
|
|
|
- validate-prepare
|
2022-09-08 15:27:41 -04:00
|
|
|
- build-dev
|
|
|
|
strategy:
|
|
|
|
fail-fast: true
|
|
|
|
matrix:
|
2022-09-10 09:10:44 -04:00
|
|
|
script: ${{ fromJson(needs.validate-prepare.outputs.matrix) }}
|
2022-09-08 15:27:41 -04:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
-
|
|
|
|
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: Validate
|
|
|
|
run: |
|
|
|
|
make -o build validate-${{ matrix.script }}
|
|
|
|
|
2022-08-27 09:05:22 -04:00
|
|
|
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
|
2022-08-31 08:11:22 -04:00
|
|
|
-
|
|
|
|
name: Prepare reports
|
|
|
|
if: always()
|
|
|
|
run: |
|
|
|
|
mkdir -p bundles /tmp/reports
|
|
|
|
find bundles -path '*/root/*overlay2' -prune -o -type f \( -name '*-report.json' -o -name '*.log' -o -name '*.out' -o -name '*.prof' -o -name '*-report.xml' \) -print | xargs sudo tar -czf /tmp/reports.tar.gz
|
|
|
|
tar -xzf /tmp/reports.tar.gz -C /tmp/reports
|
|
|
|
sudo chown -R $(id -u):$(id -g) /tmp/reports
|
|
|
|
tree -nh /tmp/reports
|
2022-08-26 14:19:00 -04:00
|
|
|
-
|
|
|
|
name: Send to Codecov
|
|
|
|
uses: codecov/codecov-action@v3
|
|
|
|
with:
|
|
|
|
directory: ./bundles
|
|
|
|
env_vars: RUNNER_OS
|
|
|
|
flags: unit
|
2022-08-31 08:11:22 -04:00
|
|
|
-
|
|
|
|
name: Upload reports
|
|
|
|
if: always()
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: unit-reports
|
|
|
|
path: /tmp/reports/*
|
2022-08-27 09:05:22 -04:00
|
|
|
|
2022-09-09 12:52:28 -04:00
|
|
|
unit-report:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
if: always()
|
|
|
|
needs:
|
|
|
|
- unit
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Set up Go
|
|
|
|
uses: actions/setup-go@v3
|
|
|
|
with:
|
|
|
|
go-version: ${{ env.GO_VERSION }}
|
|
|
|
-
|
|
|
|
name: Download reports
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: unit-reports
|
|
|
|
path: /tmp/reports
|
|
|
|
-
|
|
|
|
name: Install teststat
|
|
|
|
run: |
|
|
|
|
go install github.com/vearutop/teststat@${{ env.TESTSTAT_VERSION }}
|
|
|
|
-
|
|
|
|
name: Create summary
|
|
|
|
run: |
|
|
|
|
teststat -markdown $(find /tmp/reports -type f -name '*.json' -print0 | xargs -0) >> $GITHUB_STEP_SUMMARY
|
|
|
|
|
2022-08-27 09:05:22 -04:00
|
|
|
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
|
2022-08-31 08:11:22 -04:00
|
|
|
-
|
|
|
|
name: Prepare reports
|
|
|
|
if: always()
|
|
|
|
run: |
|
|
|
|
mkdir -p bundles /tmp/reports
|
|
|
|
find bundles -path '*/root/*overlay2' -prune -o -type f \( -name '*-report.json' -o -name '*.log' -o -name '*.out' -o -name '*.prof' -o -name '*-report.xml' \) -print | xargs sudo tar -czf /tmp/reports.tar.gz
|
|
|
|
tar -xzf /tmp/reports.tar.gz -C /tmp/reports
|
|
|
|
sudo chown -R $(id -u):$(id -g) /tmp/reports
|
|
|
|
tree -nh /tmp/reports
|
2022-08-27 09:05:22 -04:00
|
|
|
-
|
|
|
|
name: Test daemon logs
|
|
|
|
if: always()
|
|
|
|
run: |
|
|
|
|
cat bundles/test-docker-py/docker.log
|
2022-08-31 08:11:22 -04:00
|
|
|
-
|
|
|
|
name: Upload reports
|
|
|
|
if: always()
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: docker-py-reports
|
|
|
|
path: /tmp/reports/*
|
2022-08-27 09:05:22 -04:00
|
|
|
|
|
|
|
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
|
2022-08-26 14:19:00 -04:00
|
|
|
TESTCOVERAGE: 1
|
2022-08-31 08:11:22 -04:00
|
|
|
-
|
|
|
|
name: Prepare reports
|
|
|
|
if: always()
|
|
|
|
run: |
|
|
|
|
reportsPath="/tmp/reports/${{ matrix.os }}"
|
|
|
|
if [ -n "${{ matrix.mode }}" ]; then
|
|
|
|
reportsPath="$reportsPath-${{ matrix.mode }}"
|
|
|
|
fi
|
|
|
|
mkdir -p bundles $reportsPath
|
|
|
|
find bundles -path '*/root/*overlay2' -prune -o -type f \( -name '*-report.json' -o -name '*.log' -o -name '*.out' -o -name '*.prof' -o -name '*-report.xml' \) -print | xargs sudo tar -czf /tmp/reports.tar.gz
|
|
|
|
tar -xzf /tmp/reports.tar.gz -C $reportsPath
|
|
|
|
sudo chown -R $(id -u):$(id -g) $reportsPath
|
|
|
|
tree -nh $reportsPath
|
2022-08-26 14:19:00 -04:00
|
|
|
-
|
|
|
|
name: Send to Codecov
|
|
|
|
uses: codecov/codecov-action@v3
|
|
|
|
with:
|
|
|
|
directory: ./bundles/test-integration
|
|
|
|
env_vars: RUNNER_OS
|
|
|
|
flags: integration,${{ matrix.mode }}
|
2022-08-27 09:05:22 -04:00
|
|
|
-
|
|
|
|
name: Test daemon logs
|
|
|
|
if: always()
|
|
|
|
run: |
|
|
|
|
cat bundles/test-integration/docker.log
|
2022-08-31 08:11:22 -04:00
|
|
|
-
|
|
|
|
name: Upload reports
|
|
|
|
if: always()
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: integration-reports
|
|
|
|
path: /tmp/reports/*
|
2022-08-27 09:05:22 -04:00
|
|
|
|
2022-09-09 12:52:28 -04:00
|
|
|
integration-report:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
if: always()
|
|
|
|
needs:
|
|
|
|
- integration
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Set up Go
|
|
|
|
uses: actions/setup-go@v3
|
|
|
|
with:
|
|
|
|
go-version: ${{ env.GO_VERSION }}
|
|
|
|
-
|
|
|
|
name: Download reports
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: integration-reports
|
|
|
|
path: /tmp/reports
|
|
|
|
-
|
|
|
|
name: Install teststat
|
|
|
|
run: |
|
|
|
|
go install github.com/vearutop/teststat@${{ env.TESTSTAT_VERSION }}
|
|
|
|
-
|
|
|
|
name: Create summary
|
|
|
|
run: |
|
|
|
|
teststat -markdown $(find /tmp/reports -type f -name '*.json' -print0 | xargs -0) >> $GITHUB_STEP_SUMMARY
|
|
|
|
|
2022-08-27 09:05:22 -04:00
|
|
|
integration-cli-prepare:
|
|
|
|
runs-on: ubuntu-20.04
|
2022-09-10 09:07:46 -04:00
|
|
|
needs:
|
|
|
|
- validate-dco
|
2022-08-27 09:05:22 -04:00
|
|
|
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
|
2022-08-26 14:19:00 -04:00
|
|
|
TESTCOVERAGE: 1
|
2022-08-27 09:05:22 -04:00
|
|
|
TESTFLAGS: "-test.run (${{ matrix.test }})/"
|
2022-08-31 08:11:22 -04:00
|
|
|
-
|
|
|
|
name: Prepare reports
|
|
|
|
if: always()
|
|
|
|
run: |
|
|
|
|
reportsPath=/tmp/reports/$(echo -n "${{ matrix.test }}" | sha256sum | cut -d " " -f 1)
|
|
|
|
mkdir -p bundles $reportsPath
|
|
|
|
echo "${{ matrix.test }}" | tr -s '|' '\n' | tee -a "$reportsPath/tests.txt"
|
|
|
|
find bundles -path '*/root/*overlay2' -prune -o -type f \( -name '*-report.json' -o -name '*.log' -o -name '*.out' -o -name '*.prof' -o -name '*-report.xml' \) -print | xargs sudo tar -czf /tmp/reports.tar.gz
|
|
|
|
tar -xzf /tmp/reports.tar.gz -C $reportsPath
|
|
|
|
sudo chown -R $(id -u):$(id -g) $reportsPath
|
|
|
|
tree -nh $reportsPath
|
2022-08-26 14:19:00 -04:00
|
|
|
-
|
|
|
|
name: Send to Codecov
|
|
|
|
uses: codecov/codecov-action@v3
|
|
|
|
with:
|
|
|
|
directory: ./bundles/test-integration
|
|
|
|
env_vars: RUNNER_OS
|
|
|
|
flags: integration-cli
|
2022-08-27 09:05:22 -04:00
|
|
|
-
|
|
|
|
name: Test daemon logs
|
|
|
|
if: always()
|
|
|
|
run: |
|
|
|
|
cat bundles/test-integration/docker.log
|
2022-08-31 08:11:22 -04:00
|
|
|
-
|
|
|
|
name: Upload reports
|
|
|
|
if: always()
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: integration-cli-reports
|
|
|
|
path: /tmp/reports/*
|
2022-09-09 12:52:28 -04:00
|
|
|
|
|
|
|
integration-cli-report:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
if: always()
|
|
|
|
needs:
|
|
|
|
- integration-cli
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Set up Go
|
|
|
|
uses: actions/setup-go@v3
|
|
|
|
with:
|
|
|
|
go-version: ${{ env.GO_VERSION }}
|
|
|
|
-
|
|
|
|
name: Download reports
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: integration-cli-reports
|
|
|
|
path: /tmp/reports
|
|
|
|
-
|
|
|
|
name: Install teststat
|
|
|
|
run: |
|
|
|
|
go install github.com/vearutop/teststat@${{ env.TESTSTAT_VERSION }}
|
|
|
|
-
|
|
|
|
name: Create summary
|
|
|
|
run: |
|
|
|
|
teststat -markdown $(find /tmp/reports -type f -name '*.json' -print0 | xargs -0) >> $GITHUB_STEP_SUMMARY
|