Skip to content

Commit e65b6a3

Browse files
DISPATCH-2338: chore(gha): build Dockerfiles in CI (#1728)
* DISPATCH-2338: chore(gha): build Dockerfiles in CI * Bump docker/build-push-action from 5 to 6 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5 to 6. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v5...v6) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent d20d945 commit e65b6a3

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

.github/workflows/build.yaml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff 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: .

0 commit comments

Comments
 (0)