File tree Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -141,16 +141,17 @@ jobs:
141141
142142 - name : Install PHP
143143 run : |
144- cd php-${{ matrix.php }}
145144 cmake --install php-build/all-enabled
146145
147146 - name : Setup shared standalone extension
148147 run : |
149- cd php-${{ matrix.php }}
150- php ext/ext_skel.php --ext phantom
151- mkdir ext/phantom/cmake/modules
152- cp cmake/modules/FindPHP.cmake ext/phantom/cmake/modules
153- cmake -S ext/phantom -B ext/phantom/cmake-build
154- cmake --build ext/phantom/cmake-build -j
155- cmake --install ext/phantom/cmake-build
156- #php -d extension=phantom -m | grep phantom
148+ php php-build/all-enabled/php-src/ext/ext_skel.php --ext phantom
149+ mkdir -p php-build/all-enabled/php-src/ext/phantom/cmake/modules
150+ cp cmake/cmake/modules/FindPHP.cmake \
151+ php-build/all-enabled/php-src/ext/phantom/cmake/modules
152+ cmake \
153+ -S php-build/all-enabled/php-src/ext/phantom \
154+ -B php-build/all-enabled/php-src/ext/phantom/cmake-build
155+ cmake --build php-build/all-enabled/php-src/ext/phantom/cmake-build -j
156+ cmake --install php-build/all-enabled/php-src/ext/phantom/cmake-build
157+ php -d extension=phantom -m | grep phantom
You can’t perform that action at this time.
0 commit comments