Use safe march flags for AUTOBAHN #117
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 CentOS:pip based images | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| - 'dev' | |
| paths: | |
| - 'ci_build_images/centos.Dockerfile' | |
| - 'ci_build_images/pip.Dockerfile' | |
| - 'ci_build_images/qpress.Dockerfile' | |
| - 'ci_build_images/buildbot-worker.Dockerfile' | |
| - .github/workflows/build-centos.pip-based.yml | |
| - .github/workflows/bbw_build_container_template.yml | |
| pull_request: | |
| paths: | |
| - 'ci_build_images/centos.Dockerfile' | |
| - 'ci_build_images/pip.Dockerfile' | |
| - 'ci_build_images/qpress.Dockerfile' | |
| - 'ci_build_images/buildbot-worker.Dockerfile' | |
| - .github/workflows/build-centos.pip-based.yml | |
| - .github/workflows/bbw_build_container_template.yml | |
| workflow_call: | |
| jobs: | |
| build-images: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - image: quay.io/centos/centos:stream10 | |
| platforms: linux/amd64, linux/arm64/v8, linux/ppc64le | |
| tag: centosstream10 | |
| runner: ubuntu-24.04 | |
| nogalera: false | |
| extradockerfile: pip.Dockerfile | |
| - image: quay.io/centos/centos:stream9 | |
| platforms: linux/amd64, linux/arm64/v8, linux/ppc64le | |
| tag: centosstream9 | |
| runner: ubuntu-24.04 | |
| nogalera: false | |
| - image: docker.io/openeuler/openeuler:24.03-lts | |
| platforms: linux/amd64, linux/arm64/v8 | |
| tag: openeuler2403 | |
| nogalera: false | |
| extradockerfile: pip.Dockerfile | |
| uses: ./.github/workflows/bbw_build_container_template.yml | |
| with: | |
| dockerfile: centos.Dockerfile ${{ matrix.extradockerfile }} | |
| image: ${{ matrix.image }} | |
| platforms: ${{ matrix.platforms }} | |
| runner: ${{ matrix.runner }} | |
| tag: ${{ matrix.tag }} | |
| nogalera: ${{ matrix.nogalera }} | |
| secrets: inherit |