41
41
CXX : ccache g++
42
42
jobs :
43
43
LINUX_X64 :
44
- if : github.repository == 'php/php-src' || github.event_name == 'pull_request'
44
+ if : false
45
45
services :
46
46
mysql :
47
47
image : mysql:8.3
@@ -137,7 +137,7 @@ jobs:
137
137
if : ${{ !matrix.asan }}
138
138
uses : ./.github/actions/verify-generated-files
139
139
LINUX_X32 :
140
- if : github.repository == 'php/php-src' || github.event_name == 'pull_request'
140
+ if : false
141
141
name : LINUX_X32_DEBUG_ZTS
142
142
runs-on : ubuntu-latest
143
143
timeout-minutes : 50
@@ -183,7 +183,7 @@ jobs:
183
183
-d zend_extension=opcache.so
184
184
-d opcache.enable_cli=1
185
185
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'
187
187
strategy :
188
188
fail-fast : false
189
189
matrix :
@@ -200,33 +200,39 @@ jobs:
200
200
uses : actions/checkout@v4
201
201
- name : brew
202
202
uses : ./.github/actions/brew
203
- - name : ccache
204
- uses : hendrikmuhs/ccache-action@v1.2
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
214
204
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/ccache-action@v1.2
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
228
234
WINDOWS :
229
- if : github.repository == 'php/php-src' || github.event_name == 'pull_request'
235
+ if : false
230
236
name : WINDOWS_X64_ZTS
231
237
runs-on : windows-2022
232
238
timeout-minutes : 50
@@ -254,7 +260,7 @@ jobs:
254
260
run : .github/scripts/windows/test.bat
255
261
BENCHMARKING :
256
262
name : BENCHMARKING
257
- if : github.repository == 'php/php-src' || github.event_name == 'pull_request'
263
+ if : false
258
264
runs-on : ubuntu-24.04
259
265
timeout-minutes : 50
260
266
steps :
0 commit comments