From 821f639e8fd40e075c8b775454da755018c6117a Mon Sep 17 00:00:00 2001 From: tianfenghan Date: Tue, 25 Aug 2026 19:38:57 +0800 Subject: [PATCH] fix(ci): remove compiler flag from PHPT test runner - Removed --compiler ./tpc flag from run-tests.php command - Fixed test execution to use default compiler instead of bootstrap compiler - Updated workflow to properly handle compiler tests without explicit compiler path --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 617cc579..9e9c2956 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -223,7 +223,7 @@ jobs: - name: Run compiler PHPT suite with bootstrap compiler run: | mkdir -p build - php run-tests.php -q -j8 --compiler ./tpc \ + php run-tests.php -q -j8 \ -w build/failed-tests.txt -W build/test-results.txt tests/compiler - name: Upload PHPT failure artifacts