Skip to content

Commit 7c72d7b

Browse files
committed
test
1 parent 207883e commit 7c72d7b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ env:
4141
CXX: ccache g++
4242
jobs:
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: false
187187
strategy:
188188
fail-fast: false
189189
matrix:

Zend/zend_portability.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ char *alloca();
399399
# define LONGJMP(a,b) siglongjmp(a, b)
400400
# define JMP_BUF sigjmp_buf
401401
#else
402-
# define SETJMP(a) setjmp(a)
402+
# define SETJMP(a) _setjmp(a, NULL)
403403
# define LONGJMP(a,b) longjmp(a, b)
404404
# define JMP_BUF jmp_buf
405405
#endif

0 commit comments

Comments
 (0)