Skip to content

Commit c610c36

Browse files
committed
build: temp disable 8.3
1 parent fc88eb4 commit c610c36

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/build.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828
docker pull adhocore/phpfpm:8.2 || true
2929
docker pull adhocore/phpfpm:8.3 || true
3030
31-
- name: "[8.3] Build and push"
32-
id: docker_build_83
33-
uses: docker/build-push-action@v4
34-
with:
35-
push: true
36-
file: 8.3.Dockerfile
37-
tags: adhocore/phpfpm:8.3,adhocore/phpfpm:latest
38-
platforms: linux/amd64,linux/arm64
31+
# - name: "[8.3] Build and push"
32+
# id: docker_build_83
33+
# uses: docker/build-push-action@v4
34+
# with:
35+
# push: true
36+
# file: 8.3.Dockerfile
37+
# tags: adhocore/phpfpm:8.3,adhocore/phpfpm:latest
38+
# platforms: linux/amd64,linux/arm64
3939

4040
- name: "[8.2] Build and push"
4141
id: docker_build_82

docker-php-ext-remove

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ set -e
44

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

7-
[[ "" = "$@" ]] && exit 0
8-
9-
docker-php-ext-disable $@
7+
modules=$@
8+
[[ "" = "$modules" ]] && exit 0
109

10+
docker-php-ext-disable $modules
1111
for module; do
1212
rm -rf $extDir/$module $extDir/$module.so
1313
done

0 commit comments

Comments
 (0)