Skip to content

Commit 53dae69

Browse files
committed
fixup! wip: develop actions
1 parent 69ba168 commit 53dae69

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

.github/workflows/develop.yaml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,16 +68,34 @@ jobs:
6868
$ini = New-Item "C:\php\bin\php.ini" -Force
6969
Add-Content $ini "extension_dir=C:\php\bin\ext"
7070
Add-Content $ini "extension=php_openssl.dll"
71+
shell: pwsh
7172

7273
- name: Check PHP
7374
run: |-
7475
C:\php\bin\php.exe -m
76+
ls C:\php\bin\ext
77+
shell: pwsh
7578

7679
- name: Check PIE
7780
run: |-
7881
C:\php\bin\php.exe C:\php\pie.phar --version
82+
shell: pwsh
7983

8084
- name: Install Snappy
8185
run: |-
82-
C:\php\bin\php.exe C:\php\pie.phar install kjdev/snappy
86+
C:\php\bin\php.exe C:\php\pie.phar install -vvv kjdev/snappy
87+
shell: pwsh
88+
89+
- name: Check Snappy
90+
run: |-
91+
ls C:\php\bin\ext
92+
cat C:\php\bin\php.ini
8393
C:\php\bin\php.exe -m
94+
shell: pwsh
95+
96+
- name: Debug Snappy
97+
run: |-
98+
$ini = New-Item "C:\php\bin\php.ini" -Force
99+
Add-Content $ini "extension=php_snappy.dll"
100+
C:\php\bin\php.exe -m
101+
shell: pwsh

0 commit comments

Comments
 (0)