From 18c58bc687ebc4b09bdd11f69929682f76c1cb74 Mon Sep 17 00:00:00 2001 From: Eser DENIZ Date: Sat, 7 Sep 2024 02:50:50 +0200 Subject: [PATCH] Remove debug --- .github/workflows/build-macos-binary.yml | 14 -------------- build.sh | 2 +- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/.github/workflows/build-macos-binary.yml b/.github/workflows/build-macos-binary.yml index d7bbe1f..8b0b5c4 100644 --- a/.github/workflows/build-macos-binary.yml +++ b/.github/workflows/build-macos-binary.yml @@ -58,20 +58,6 @@ jobs: - name: Composer install run: composer install --prefer-dist --no-progress --optimize-autoloader -# - id: cache-download -# name: Cached source download -# uses: actions/cache@v3 -# with: -# path: downloads -# key: php-${{ env.COMPILE_PHP_VERSION }}-dependencies -# -# - if: steps.cache-download.outputs.cache-hit != 'true' -# name: Fetch php and extensions sources -# run: ./bin/spc download --with-php=${{ env.COMPILE_PHP_VERSION }} --for-extensions=$COMPILE_EXTENSIONS -# -# - name: Build Micro -# run: ./bin/spc build $COMPILE_EXTENSIONS --build-micro - - name: Build Binary run: ./build.sh --name "${{ env.BINARY_NAME }}" diff --git a/build.sh b/build.sh index d2f9e30..5877ac0 100755 --- a/build.sh +++ b/build.sh @@ -48,7 +48,7 @@ cd ../ ./static-php-cli/bin/spc doctor ./static-php-cli/bin/spc download --with-php="8.3" --for-extensions="dom,phar,zlib" --prefer-pre-built ./static-php-cli/bin/spc switch-php-version "8.3" -./static-php-cli/bin/spc build --build-micro "dom,phar,zlib" --debug +./static-php-cli/bin/spc build --build-micro "dom,phar,zlib" # Build binary ./static-php-cli/bin/spc micro:combine bin/svgtinyps.phar --output="bin/$binary_name"