From cb036ab3e65b81d03510942d719020e8a03c9165 Mon Sep 17 00:00:00 2001 From: crazywhalecc Date: Sat, 11 May 2024 14:28:36 +0800 Subject: [PATCH] revert dev-php tests --- .github/workflows/tests.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 82958f1c..f1d07663 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -111,7 +111,6 @@ jobs: - "8.1" - "8.2" - "8.3" - - "dev" os: - ubuntu-latest - macos-13 @@ -160,7 +159,6 @@ jobs: run: bin/spc doctor --auto-fix - name: "Run Build Tests (download)" - if: matrix.php != 'dev' uses: nick-fields/retry@v3 with: timeout_minutes: 10 @@ -169,15 +167,5 @@ jobs: command: | bin/spc download --for-extensions="$(php src/globals/test-extensions.php extensions)" --for-libs="$(php src/globals/test-extensions.php libs)" --with-php=${{ matrix.php }} --ignore-cache-sources=php-src --debug --retry=3 - - name: "Run Build Tests (download-dev)" - if: matrix.php == 'dev' - uses: nick-fields/retry@v3 - with: - timeout_minutes: 10 - max_attempts: 3 - retry_on: error - command: | - bin/spc download --for-extensions="$(php src/globals/test-extensions.php extensions)" --for-libs="$(php src/globals/test-extensions.php libs)" -U "php-src:https://github.com/php/php-src/archive/refs/heads/master.zip" --ignore-cache-sources=php-src --debug --retry=3 - - name: "Run Build Tests (build)" run: bin/spc build "$(php src/globals/test-extensions.php extensions)" $(php src/globals/test-extensions.php zts) --with-libs="$(php src/globals/test-extensions.php libs)" --build-cli --build-micro --build-fpm --debug