File tree Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -750,11 +750,21 @@ jobs:
750750 container-images :
751751 name : Container Images
752752 runs-on : ubuntu-latest
753+ strategy :
754+ fail-fast : false
755+ matrix :
756+ # TODO(jdanek): commented out Dockerfiles are broken and don't build
757+ dockerfile :
758+ - Dockerfile
759+ # - dockerfiles/Dockerfile-centos7
760+ - dockerfiles/Dockerfile-debian
761+ # - dockerfiles/Dockerfile-fedora
762+ # - dockerfiles/Dockerfile-ubuntu
753763 steps :
754- - name : Checkout
755- uses : actions/checkout@v4
764+ - uses : actions/checkout@v4
765+
756766 - name : Build Debian image
757- uses : docker/build-push-action@v5
767+ uses : docker/build-push-action@v6
758768 with :
759- file : dockerfiles/Dockerfile-debian
769+ file : ${{ matrix.dockerfile }}
760770 context : .
You can’t perform that action at this time.
0 commit comments