We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 14427ac + 49c3bee commit e027c66Copy full SHA for e027c66
1 file changed
.github/workflows/test-suite.yml
@@ -187,6 +187,7 @@ jobs:
187
${{ matrix.variation && '-d zend_test.observer.enabled=1 -d zend_test.observer.show_output=0' || '' }}
188
idleCpu: ${{ matrix.asan && 'true' || 'false' }}
189
- name: Test Tracing JIT
190
+ if: ${{ inputs.all_variations || matrix.asan }}
191
uses: ./.github/actions/test-linux
192
with:
193
enableOpcache: true
@@ -208,7 +209,7 @@ jobs:
208
209
- name: Test Function JIT
210
# ASAN frequently timeouts. Each test run takes ~90 minutes, we can
211
# avoid running into the 6 hour timeout by skipping the function JIT.
- if: ${{ inputs.all_variations && !matrix.asan }}
212
+ if: ${{ !matrix.asan }}
213
214
215
0 commit comments