4141 CXX : ccache g++
4242jobs :
4343 LINUX_X64 :
44- if : github.repository == 'php/php-src' || github.event_name == 'pull_request'
44+ if : false
4545 services :
4646 mysql :
4747 image : mysql:8.3
@@ -137,7 +137,7 @@ jobs:
137137 if : ${{ !matrix.asan }}
138138 uses : ./.github/actions/verify-generated-files
139139 LINUX_X32 :
140- if : github.repository == 'php/php-src' || github.event_name == 'pull_request'
140+ if : false
141141 name : LINUX_X32_DEBUG_ZTS
142142 runs-on : ubuntu-latest
143143 timeout-minutes : 50
@@ -183,7 +183,7 @@ jobs:
183183 -d zend_extension=opcache.so
184184 -d opcache.enable_cli=1
185185 MACOS_DEBUG_NTS :
186- if : github.repository == 'php/php-src' || github.event_name == 'pull_request'
186+ # if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
187187 strategy :
188188 fail-fast : false
189189 matrix :
@@ -200,33 +200,39 @@ jobs:
200200 uses : actions/checkout@v4
201201 - name : brew
202202 uses : ./.github/actions/brew
203- - name : ccache
204- uses :
hendrikmuhs/[email protected] 205- with :
206- key : " ${{github.job}}-${{matrix.os}}-${{hashFiles('main/php_version.h')}}"
207- append-timestamp : false
208- save : ${{ github.event_name != 'pull_request' }}
209- - name : ./configure
210- uses : ./.github/actions/configure-macos
211- with :
212- configurationParameters : --enable-debug --disable-zts
213- - name : make
203+ - name : pkg-config test
214204 run : |-
215- export PATH="$(brew --prefix)/opt/bison/bin:$PATH"
216- make -j$(sysctl -n hw.logicalcpu) >/dev/null
217- - name : make install
218- run : sudo make install
219- - name : Test Tracing JIT
220- uses : ./.github/actions/test-macos
221- with :
222- jitType : tracing
223- runTestsParameters : >-
224- -d zend_extension=opcache.so
225- -d opcache.enable_cli=1
226- - name : Verify generated files are up to date
227- uses : ./.github/actions/verify-generated-files
205+ BREW_OPT="$(brew --prefix)"/opt
206+ export PATH="$BREW_OPT/bison/bin:$PATH"
207+ export PKG_CONFIG_PATH="$BREW_OPT/curl/lib/pkgconfig:$PKG_CONFIG_PATH"
208+ pkg-config libcurl --debug
209+ # - name: ccache
210+ # uses: hendrikmuhs/[email protected] 211+ # with:
212+ # key: "${{github.job}}-${{matrix.os}}-${{hashFiles('main/php_version.h')}}"
213+ # append-timestamp: false
214+ # save: ${{ github.event_name != 'pull_request' }}
215+ # - name: ./configure
216+ # uses: ./.github/actions/configure-macos
217+ # with:
218+ # configurationParameters: --enable-debug --disable-zts
219+ # - name: make
220+ # run: |-
221+ # export PATH="$(brew --prefix)/opt/bison/bin:$PATH"
222+ # make -j$(sysctl -n hw.logicalcpu) >/dev/null
223+ # - name: make install
224+ # run: sudo make install
225+ # - name: Test Tracing JIT
226+ # uses: ./.github/actions/test-macos
227+ # with:
228+ # jitType: tracing
229+ # runTestsParameters: >-
230+ # -d zend_extension=opcache.so
231+ # -d opcache.enable_cli=1
232+ # - name: Verify generated files are up to date
233+ # uses: ./.github/actions/verify-generated-files
228234 WINDOWS :
229- if : github.repository == 'php/php-src' || github.event_name == 'pull_request'
235+ if : false
230236 name : WINDOWS_X64_ZTS
231237 runs-on : windows-2022
232238 timeout-minutes : 50
@@ -254,7 +260,7 @@ jobs:
254260 run : .github/scripts/windows/test.bat
255261 BENCHMARKING :
256262 name : BENCHMARKING
257- if : github.repository == 'php/php-src' || github.event_name == 'pull_request'
263+ if : false
258264 runs-on : ubuntu-24.04
259265 timeout-minutes : 50
260266 steps :
0 commit comments