We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 969c692 commit a823f4aCopy full SHA for a823f4a
.github/workflows/push.yml
@@ -61,7 +61,14 @@ jobs:
61
-d opcache.jit_buffer_size=16M
62
- name: Verify generated files are up to date
63
uses: ./.github/actions/verify-generated-files
64
- MACOS_DEBUG_NTS:
+ MACOS:
65
+ strategy:
66
+ fail-fast: false
67
+ matrix:
68
+ include:
69
+ - debug: true
70
+ zts: false
71
+ name: "MACOS_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}"
72
runs-on: macos-11
73
steps:
74
- name: git checkout
@@ -71,7 +78,9 @@ jobs:
78
- name: ./configure
79
uses: ./.github/actions/configure-macos
80
with:
- configurationParameters: --enable-debug --disable-zts
81
+ configurationParameters: >-
82
+ --${{ matrix.debug && 'enable' || 'disable' }}-debug
83
+ --${{ matrix.zts && 'enable' || 'disable' }}-zts
75
84
- name: make
76
85
run: |-
77
86
export PATH="/usr/local/opt/bison/bin:$PATH"
0 commit comments