From 79741d89b9917a26199cfd8822b8c662642f8e6e Mon Sep 17 00:00:00 2001 From: Muhamad Aditya Prima Date: Wed, 18 Dec 2024 00:51:10 +0700 Subject: [PATCH] Removed separate php5-composer build, will integrate on all flavors build --- .gitea/workflows/php5-composer.yaml | 80 ----------------------------- 1 file changed, 80 deletions(-) delete mode 100644 .gitea/workflows/php5-composer.yaml diff --git a/.gitea/workflows/php5-composer.yaml b/.gitea/workflows/php5-composer.yaml deleted file mode 100644 index 0f6e4eb..0000000 --- a/.gitea/workflows/php5-composer.yaml +++ /dev/null @@ -1,80 +0,0 @@ -name: Build and push PHP 5 container images - -on: - push: - branches: - - php5-composer - -jobs: - build: - name: Build PHP 5 container images - runs-on: ubuntu-latest - container: - image: ghcr.io/catthehacker/ubuntu:act-latest - strategy: - matrix: - flavors: - - os: "alpine" - os_version: "3.6" - php_version: "5.6" - php_ver_short: "5" - composer_version: "2.2.25" - composer_ver_short: "2.2" - steps: - - name: Check out repository code - uses: actions/checkout@v4 - - name: Login to quay.io - uses: docker/login-action@v3 - with: - registry: quay.io - username: ${{ vars.QUAY_USERNAME }} - password: ${{ secrets.QUAY_SECRET }} - # - name: Set up QEMU - # uses: docker/setup-qemu-action@v3 - - name: Setup Docker buildx - uses: docker/setup-buildx-action@v3 - - name: Build and push php5 with composer - uses: docker/build-push-action@v5 - with: - push: true - context: . - file: 5/Dockerfile.composer-${{ matrix.flavors.os }} - build-args: | - OS_VERSION=${{ matrix.flavors.os_version }} - FLAVOR=${{ matrix.flavors.mode }} - PHP_VERSION=${{ matrix.flavors.php_version }} - PHP_VER_SHORT=${{ matrix.flavors.php_ver_short }} - COMPOSER_VERSION=${{ matrix.flavors.composer_version }} - COMPOSER_VER_SHORT=${{ matrix.flavors.composer_ver_short }} - tags: | - quay.io/sindigilive/php:${{ matrix.flavors.php_version }}-composer${{ matrix.flavors.composer_ver_short }}-${{ matrix.flavors.os }} - # build-latest: - # name: Build latest nginx alpine based container images - # runs-on: ubuntu-latest - # needs: - # - build - # container: - # image: ghcr.io/catthehacker/ubuntu:act-latest - # steps: - # - name: Check out repository code - # uses: actions/checkout@v4 - # - name: Login to quay.io - # uses: docker/login-action@v3 - # with: - # registry: quay.io - # username: ${{ vars.QUAY_USERNAME }} - # password: ${{ secrets.QUAY_SECRET }} - # # - name: Set up QEMU - # # uses: docker/setup-qemu-action@v3 - # - name: Setup Docker buildx - # uses: docker/setup-buildx-action@v3 - # - name: Build and push latest nginx - # uses: docker/build-push-action@v5 - # with: - # # platforms: linux/amd64,linux/arm64 - # push: true - # context: . - # file: Dockerfile.alpine - # tags: | - # quay.io/sindigilive/nginx:alpine - # quay.io/sindigilive/nginx:latest