MDBF-1156 Add Ubuntu 26.04 and 26.04v3 #100
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build Debian:jepsen based images | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| - 'dev' | |
| paths: | |
| - 'ci_build_images/debian.Dockerfile' | |
| - 'ci_build_images/jepsen-mariadb.Dockerfile' | |
| - 'ci_build_images/qpress.Dockerfile' | |
| - 'ci_build_images/buildbot-worker.Dockerfile' | |
| - .github/workflows/build-debian.jepsen-based.yml | |
| - .github/workflows/bbw_build_container_template.yml | |
| pull_request: | |
| paths: | |
| - 'ci_build_images/debian.Dockerfile' | |
| - 'ci_build_images/jepsen-mariadb.Dockerfile' | |
| - 'ci_build_images/qpress.Dockerfile' | |
| - 'ci_build_images/buildbot-worker.Dockerfile' | |
| - .github/workflows/build-debian.jepsen-based.yml | |
| - .github/workflows/bbw_build_container_template.yml | |
| workflow_call: | |
| jobs: | |
| build-images: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - image: ubuntu:22.04 | |
| platforms: linux/amd64 | |
| branch: 10.11 | |
| tag: ubuntu22.04-jepsen-mariadb | |
| uses: ./.github/workflows/bbw_build_container_template.yml | |
| with: | |
| dockerfile: debian.Dockerfile jepsen-mariadb.Dockerfile | |
| image: ${{ matrix.image }} | |
| platforms: ${{ matrix.platforms }} | |
| tag: ${{ matrix.tag }} | |
| branch: ${{ matrix.branch }} | |
| secrets: inherit |