From b8a846ac77ce1b9fccd764828e5f4e3e84fc4c1c Mon Sep 17 00:00:00 2001 From: Nitish Bhat Date: Wed, 17 Jun 2026 17:40:24 +0000 Subject: [PATCH] ci: add PR build workflow for all Docker images Add a GitHub Actions workflow that builds all 5 KMM Docker images (operator, operator-hub, signimage, webhook, worker) on every PR targeting main or release-* branches. Uses a matrix strategy with fail-fast disabled so all images are built even if one fails. Build-only, no push. --- .github/workflows/ci.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..d44f7ab3 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,32 @@ +name: CI - Build Images + +on: + pull_request: + branches: + - main + - release-* + +jobs: + build-images: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + include: + - name: operator + target: docker-build + - name: operator-hub + target: docker-build-hub + - name: signimage + target: signimage-build + - name: webhook + target: webhookimage-build + - name: worker + target: workerimage-build + name: build (${{ matrix.name }}) + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Build ${{ matrix.name }} + run: make ${{ matrix.target }}