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 5f693eb commit aafae87Copy full SHA for aafae87
.github/actions/build-mac/action.yml
@@ -38,10 +38,11 @@ runs:
38
shell: bash
39
run: |
40
php --ini
41
- ls -la /opt/homebrew/etc/php
42
cp ./modules/zephir_parser.so "$(php -r 'echo ini_get("extension_dir");')/zephir_parser.so"
43
if [ "${{ matrix.ts }}" = "ts" ]; then
+ ls -la /opt/homebrew/etc/php/${{ matrix.php }}-zts
44
echo "extension=zephir_parser.so" > /opt/homebrew/etc/php/${{ matrix.php }}-zts/conf.d/ext-zephir_parser.ini
45
else
46
+ ls -la /opt/homebrew/etc/php/${{ matrix.php }}
47
echo "extension=zephir_parser.so" > /opt/homebrew/etc/php/${{ matrix.php }}/conf.d/ext-zephir_parser.ini
48
fi
0 commit comments