From c393bf226b45a69902fe2510f27f57faf2957294 Mon Sep 17 00:00:00 2001 From: "Shao Yu-Lung (Allen)" Date: Thu, 7 Oct 2021 21:57:09 +0800 Subject: [PATCH 1/2] workspace: add ionCube Loader enabled check --- workspace/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/workspace/Dockerfile b/workspace/Dockerfile index 49c89b9..1d525c4 100644 --- a/workspace/Dockerfile +++ b/workspace/Dockerfile @@ -659,6 +659,7 @@ RUN if [ ${INSTALL_IONCUBE} = true ]; then \ && echo "zend_extension=ioncube_loader.so" >> /etc/php/${LARADOCK_PHP_VERSION}/mods-available/ioncube.ini \ && ln -s /etc/php/${LARADOCK_PHP_VERSION}/mods-available/ioncube.ini /etc/php/${LARADOCK_PHP_VERSION}/cli/conf.d/0ioncube.ini \ && rm -rf /tmp/ioncube* \ + && php -m | grep -oiE '^ionCube Loader$' \ ;fi \ ;fi From ee9955025829adda6ab8a6a23006488cd041bd46 Mon Sep 17 00:00:00 2001 From: "Shao Yu-Lung (Allen)" Date: Thu, 7 Oct 2021 22:04:06 +0800 Subject: [PATCH 2/2] CI: skip ENCHANT --- .github/workflows/main-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main-ci.yml b/.github/workflows/main-ci.yml index 8fe4e51..97a324c 100644 --- a/.github/workflows/main-ci.yml +++ b/.github/workflows/main-ci.yml @@ -43,6 +43,7 @@ jobs: sed -i -- 's/V8JS=true/V8JS=false/g' .env sed -i -- 's/AUDIOWAVEFORM=true/AUDIOWAVEFORM=false/g' .env sed -i -- 's/SSDB=true/SSDB=false/g' .env + sed -i -- 's/ENCHANT=true/ENCHANT=false/g' .env docker-compose build ${{ matrix.service }} docker-compose up -d --no-deps -- ${{ matrix.service }} docker-compose exec -T -- ${{ matrix.service }} php -m