File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+ name : dockerfile-release-test
2+
3+ on :
4+ workflow_dispatch :
5+ push :
6+ branches :
7+ - testing/dockerfile-test-versioning
8+
9+ env :
10+ TESTFLAGS : " -v --parallel=6 --timeout=30m"
11+
12+ jobs :
13+ test :
14+ runs-on : ubuntu-24.04
15+ strategy :
16+ fail-fast : false
17+ matrix :
18+ ref :
19+ - dockerfile/1.11.0
20+ channel :
21+ - mainline
22+ - labs
23+
24+ steps :
25+ - uses : actions/checkout@v4
26+ - uses : docker/setup-qemu-action@v3
27+ - uses : docker/setup-buildx-action@v3
28+ with :
29+ buildkitd-flags : --debug
30+ - name : Test
31+ run : |
32+ DOCKERFILE_RELEASES=${{ matrix.channel }} TEST_SUITE_CONTEXT=https://github.com/${GITHUB_REPOSITORY}.git#${{ matrix.ref }} TESTPKGS=./frontend/dockerfile ./hack/test dockerfile
You can’t perform that action at this time.
0 commit comments