@@ -54,7 +54,7 @@ permissions:
5454 contents : read
5555jobs :
5656 LINUX_PPC64 :
57- if : inputs.run_linux_ppc64
57+ if : false
5858 name : LINUX_PPC64_ASAN_UBSAN_DEBUG_ZTS
5959 # This runs on a self-hosted runner; see https://wiki.php.net/systems/ci
6060 runs-on : [self-hosted, gentoo, ppc64]
9494 - name : Extra tests
9595 uses : ./.github/actions/extra-tests
9696 ALPINE :
97- if : inputs.run_alpine
97+ if : false
9898 name : ALPINE_X64_ASAN_UBSAN_DEBUG_ZTS
9999 runs-on : ubuntu-24.04
100100 container :
@@ -139,6 +139,7 @@ jobs:
139139 - name : Extra tests
140140 uses : ./.github/actions/extra-tests
141141 LINUX_X64 :
142+ if : false
142143 services :
143144 mysql :
144145 image : mysql:8.3
@@ -267,6 +268,7 @@ jobs:
267268 - name : Verify generated files are up to date
268269 uses : ./.github/actions/verify-generated-files
269270 LINUX_X32 :
271+ if : false
270272 strategy :
271273 fail-fast : false
272274 matrix :
@@ -351,7 +353,7 @@ jobs:
351353 strategy :
352354 fail-fast : false
353355 matrix :
354- debug : [true, false]
356+ debug : [false]
355357 zts : [true, false]
356358 arch : ['X64', 'ARM64']
357359 exclude :
@@ -363,6 +365,19 @@ jobs:
363365 uses : actions/checkout@v5
364366 with :
365367 ref : ${{ inputs.branch }}
368+ - name : Update command line tools
369+ run : |
370+ softwareupdate -l
371+ label=$(softwareupdate -l 2>/dev/null | grep 'Label:' | grep -o 'Command Line Tools for Xcode.*' | head -1)
372+ if [ -n "$label" ]; then
373+ softwareupdate -i "$label"
374+ xcode_path=$(ls -1 '/Applications' | grep 'Xcode_.*\.app' | head -1)
375+ sudo xcode-select -s "/Applications/$xcode_path"
376+ else
377+ echo "Not found."
378+ fi
379+ which clang
380+ clang -v
366381 - name : brew
367382 uses : ./.github/actions/brew
368383 - name : ./configure
@@ -402,8 +417,17 @@ jobs:
402417 uses : ./.github/actions/extra-tests
403418 - name : Verify generated files are up to date
404419 uses : ./.github/actions/verify-generated-files
420+ - name : Log diagnostic reports
421+ if : ${{ !cancelled() }}
422+ run : ls -lahR /Users/runner/Library/Logs/DiagnosticReports/
423+ - name : Archive code coverage results
424+ if : ${{ !cancelled() }}
425+ uses : actions/upload-artifact@v4
426+ with :
427+ name : diagnostic-reports
428+ path : /Users/runner/Library/Logs/DiagnosticReports/**/*
405429 COVERAGE_DEBUG_NTS :
406- if : inputs.branch == 'master'
430+ if : false
407431 services :
408432 mysql :
409433 image : mysql:8.3
@@ -463,6 +487,7 @@ jobs:
463487 token : ${{ secrets.CODECOV_TOKEN }}
464488 verbose : true
465489 COMMUNITY :
490+ if : false
466491 strategy :
467492 fail-fast : false
468493 matrix :
@@ -650,6 +675,7 @@ jobs:
650675 exit 1
651676 fi
652677 OPCACHE_VARIATION :
678+ if : false
653679 services :
654680 mysql :
655681 image : mysql:8.3
@@ -731,6 +757,7 @@ jobs:
731757 - name : Verify generated files are up to date
732758 uses : ./.github/actions/verify-generated-files
733759 MSAN :
760+ if : false
734761 name : MSAN
735762 runs-on : ubuntu-${{ inputs.ubuntu_version }}
736763 steps :
@@ -817,6 +844,7 @@ jobs:
817844 - name : Verify generated files are up to date
818845 uses : ./.github/actions/verify-generated-files
819846 LIBMYSQLCLIENT :
847+ if : false
820848 name : LIBMYSQLCLIENT
821849 runs-on : ubuntu-${{ inputs.ubuntu_version }}
822850 steps :
@@ -859,7 +887,7 @@ jobs:
859887 - name : Verify generated files are up to date
860888 uses : ./.github/actions/verify-generated-files
861889 PECL :
862- if : inputs.branch == 'master'
890+ if : false
863891 runs-on : ubuntu-22.04
864892 env :
865893 CC : ccache gcc
@@ -966,6 +994,7 @@ jobs:
966994 ./configure --prefix=/opt/php --with-php-config=/opt/php/bin/php-config
967995 make -j$(/usr/bin/nproc)
968996 WINDOWS :
997+ if : false
969998 strategy :
970999 fail-fast : false
9711000 matrix :
@@ -1012,6 +1041,7 @@ jobs:
10121041 - name : Test
10131042 run : .github/scripts/windows/test.bat
10141043 FREEBSD :
1044+ if : false
10151045 strategy :
10161046 fail-fast : false
10171047 matrix :
0 commit comments