Skip to content

Commit

Permalink
build: temp disable 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
adhocore committed Mar 29, 2024
1 parent fc88eb4 commit c610c36
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ jobs:
docker pull adhocore/phpfpm:8.2 || true
docker pull adhocore/phpfpm:8.3 || true
- name: "[8.3] Build and push"
id: docker_build_83
uses: docker/build-push-action@v4
with:
push: true
file: 8.3.Dockerfile
tags: adhocore/phpfpm:8.3,adhocore/phpfpm:latest
platforms: linux/amd64,linux/arm64
# - name: "[8.3] Build and push"
# id: docker_build_83
# uses: docker/build-push-action@v4
# with:
# push: true
# file: 8.3.Dockerfile
# tags: adhocore/phpfpm:8.3,adhocore/phpfpm:latest
# platforms: linux/amd64,linux/arm64

- name: "[8.2] Build and push"
id: docker_build_82
Expand Down
6 changes: 3 additions & 3 deletions docker-php-ext-remove
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ set -e

extDir=$(php -r 'echo ini_get("extension_dir");')

[[ "" = "$@" ]] && exit 0

docker-php-ext-disable $@
modules=$@
[[ "" = "$modules" ]] && exit 0

docker-php-ext-disable $modules
for module; do
rm -rf $extDir/$module $extDir/$module.so
done

0 comments on commit c610c36

Please sign in to comment.