Comments out centos job from the main build and test build actions #41
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 Images (Testing) | |
| on: | |
| push: | |
| branches: | |
| - 'feature/*' | |
| jobs: | |
| Build_PHP_Ubuntu_Test: | |
| strategy: | |
| matrix: | |
| version: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4'] | |
| ubuntu-release-name: ['jammy', 'noble'] | |
| environment: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.ref }} | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Extract metadata (tags, labels) for Docker (Jammy) | |
| if: matrix.ubuntu-release-name == 'jammy' | |
| id: meta-jammy | |
| uses: docker/metadata-action@v5 | |
| with: | |
| tags: | | |
| type=raw,pattern={{version}},value=${{ matrix.version }}-${{ matrix.ubuntu-release-name }} | |
| type=raw,pattern={{version}},value=${{ matrix.version }}-ubuntu | |
| images: | | |
| ${{ secrets.IMAGE_NAME }} | |
| ghcr.io/${{ github.repository }} | |
| - name: Extract metadata (tags, labels) for Docker (Others) | |
| if: matrix.ubuntu-release-name != 'jammy' | |
| id: meta-others | |
| uses: docker/metadata-action@v5 | |
| with: | |
| tags: | | |
| type=raw,pattern={{version}},value=${{ matrix.version }}-${{ matrix.ubuntu-release-name }} | |
| images: | | |
| ${{ secrets.IMAGE_NAME }} | |
| ghcr.io/${{ github.repository }} | |
| - name: Build and push Docker images (Jammy) | |
| if: matrix.ubuntu-release-name == 'jammy' | |
| uses: docker/build-push-action@v6 | |
| with: | |
| push: false | |
| platforms: linux/amd64,linux/arm64 | |
| build-args: | | |
| PHP_VERSION=${{ matrix.version }} | |
| UBUNTU_RELEASE_NAME=${{ matrix.ubuntu-release-name }} | |
| tags: ${{ steps.meta-jammy.outputs.tags }} | |
| labels: ${{ steps.meta-jammy.outputs.labels }} | |
| - name: Build and push Docker images (Others) | |
| if: matrix.ubuntu-release-name != 'jammy' | |
| uses: docker/build-push-action@v6 | |
| with: | |
| push: false | |
| platforms: linux/amd64,linux/arm64 | |
| build-args: | | |
| PHP_VERSION=${{ matrix.version }} | |
| UBUNTU_RELEASE_NAME=${{ matrix.ubuntu-release-name }} | |
| tags: ${{ steps.meta-others.outputs.tags }} | |
| labels: ${{ steps.meta-others.outputs.labels }} | |
| # CentOS has been deprecated | |
| # Build_PHP_CentOS8_Test: | |
| # strategy: | |
| # matrix: | |
| # version: ['7.2', '7.3', '7.4', '8.0', '8.1'] | |
| # environment: | |
| # name: Build | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - name: Checkout | |
| # uses: actions/checkout@v4 | |
| # with: | |
| # ref: ${{ github.ref }} | |
| # | |
| # - name: Set up QEMU | |
| # uses: docker/setup-qemu-action@v3 | |
| # | |
| # - name: Set up Docker Buildx | |
| # uses: docker/setup-buildx-action@v3 | |
| # | |
| # - name: Build and push CentOS based Docker images | |
| # uses: docker/build-push-action@v6 | |
| # with: | |
| # push: false | |
| # context: centos8 | |
| # platforms: linux/amd64 | |
| # build-args: PHP_VERSION=${{ matrix.version }} | |
| # tags: ${{ secrets.IMAGE_NAME }}:${{ matrix.version }} |