From b2ea479fac1a3236047461f9c843d24afa951ac1 Mon Sep 17 00:00:00 2001 From: Joseph Bielawski Date: Wed, 13 Sep 2023 15:06:08 +0200 Subject: [PATCH] Remove the phar workflow temporary --- .github/workflows/phar-build.yml | 65 -------------------------------- 1 file changed, 65 deletions(-) delete mode 100644 .github/workflows/phar-build.yml diff --git a/.github/workflows/phar-build.yml b/.github/workflows/phar-build.yml deleted file mode 100644 index a1029e9e..00000000 --- a/.github/workflows/phar-build.yml +++ /dev/null @@ -1,65 +0,0 @@ -name: Build PHAR - -# Temporary disabled, please follow: https://github.com/crazywhalecc/static-php-cli/issues/179 -#on: -# push: -# branches: [ "main" ] -# pull_request: -# branches: [ "main" ] - -permissions: - contents: read - -jobs: - build-phar: - name: "Build PHAR" - - runs-on: ${{ matrix.operating-system }} - - strategy: - fail-fast: false - matrix: - dependencies: - - "locked" - php-version: - - "8.1" - operating-system: - - "ubuntu-latest" - - steps: - - name: "Checkout" - uses: "actions/checkout@v4" - - - name: "Install PHP" - uses: "shivammathur/setup-php@v2" - with: - coverage: none - tools: composer:v2 - php-version: "${{ matrix.php-version }}" - ini-values: memory_limit=-1 - - - name: "Get Composer Cache Directory" - id: composer-cache - run: | - echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - - - name: "Cache Composer dependencies" - uses: "actions/cache@v3" - with: - path: "${{ steps.composer-cache.outputs.dir }}" - key: "php-${{ matrix.php-version }}-locked-composer-${{ hashFiles('**/composer.lock') }}" - restore-keys: | - php-${{ matrix.php-version }}-locked-composer- - - - name: "Install locked dependencies" - run: "composer install --no-interaction --no-progress" - - - name: "Build PHAR file" - run: "composer build:phar" - - - name: "Test PHAR file" - run: "./spc.phar dev:extensions" - - - uses: actions/upload-artifact@v3 - with: - path: spc.phar