Skip to content

Commit b9eb4a4

Browse files
committed
Debug clang crash
1 parent ada7400 commit b9eb4a4

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

.github/workflows/push.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ env:
3333
CXX: ccache g++
3434
jobs:
3535
ALPINE:
36-
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
36+
if: false
3737
name: ALPINE_X64_ASAN_UBSAN_DEBUG_ZTS
3838
runs-on: ubuntu-24.04
3939
container:
@@ -74,7 +74,7 @@ jobs:
7474
--asan -x
7575
-d opcache.enable_cli=1
7676
LINUX_X64:
77-
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
77+
if: false
7878
services:
7979
mysql:
8080
image: mysql:8.3
@@ -170,7 +170,7 @@ jobs:
170170
if: ${{ !matrix.asan }}
171171
uses: ./.github/actions/verify-generated-files
172172
LINUX_X32:
173-
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
173+
if: false
174174
name: LINUX_X32_DEBUG_ZTS
175175
runs-on: ubuntu-latest
176176
timeout-minutes: 50
@@ -250,7 +250,7 @@ jobs:
250250
- name: ./configure
251251
uses: ./.github/actions/configure-macos
252252
with:
253-
configurationParameters: --enable-debug --disable-zts
253+
configurationParameters: --disable-debug --disable-zts
254254
- name: make
255255
run: |-
256256
export PATH="$(brew --prefix)/opt/bison/bin:$PATH"
@@ -265,8 +265,15 @@ jobs:
265265
-d opcache.enable_cli=1
266266
- name: Verify generated files are up to date
267267
uses: ./.github/actions/verify-generated-files
268+
- name: Archive production artifacts
269+
if: ${{ !cancelled() }}
270+
uses: actions/upload-artifact@v4
271+
with:
272+
name: dist-without-markdown
273+
path: |
274+
/Users/runner/Library/Logs/DiagnosticReports/clang_*.crash
268275
WINDOWS:
269-
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
276+
if: false
270277
name: WINDOWS_X64_ZTS
271278
runs-on: windows-2022
272279
timeout-minutes: 50
@@ -398,7 +405,7 @@ jobs:
398405
path: ${{ github.workspace }}/benchmark/profiles
399406
retention-days: 30
400407
FREEBSD:
401-
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
408+
if: false
402409
name: FREEBSD
403410
runs-on: ubuntu-latest
404411
timeout-minutes: 50

0 commit comments

Comments
 (0)