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 1091937 commit 1bb3c9aCopy full SHA for 1bb3c9a
.github/actions/build-mac/action.yml
@@ -41,4 +41,8 @@ runs:
41
shell: bash
42
run: |
43
cp ./modules/zephir_parser.so "$(php -r 'echo ini_get("extension_dir");')/zephir_parser.so"
44
- echo "extension=zephir_parser.so" > /usr/local/etc/php/${{ matrix.php }}/conf.d/ext-zephir_parser.ini
+ if [ "${{ matrix.ts }}" = "ts" ]; then
45
+ echo "extension=zephir_parser.so" > /usr/local/etc/php/${{ matrix.php }}-zts/conf.d/ext-zephir_parser.ini
46
+ else
47
+ echo "extension=zephir_parser.so" > /usr/local/etc/php/${{ matrix.php }}/conf.d/ext-zephir_parser.ini
48
+ fi
0 commit comments