File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed
Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change 88env :
99 PHP_EXT : lz4
1010 PHP_EXT_VERSION : ${{ github.event.release.tag_name }}
11- BIN_SDK_VER : 2.3 .0
11+ BIN_SDK_VER : 2.5 .0
1212
1313jobs :
1414 ci :
2929 - vs16
3030 - vs17
3131 library :
32- - ' '
33- - ' vcpkg '
32+ - false
33+ - true
3434 exclude :
3535 - php : ' 8.4'
3636 vs : vs16
4949 ARCH : ${{ matrix.arch }}
5050 TS : ${{ matrix.ts }}
5151
52+ if : contains(github.event.head_commit.message, 'ci skip') == false
53+
5254 steps :
5355 - name : Checkout repository
5456 uses : actions/checkout@v4
5860 - name : Checkout submodule
5961 run : .\.github\workflows\submodule.ps1
6062 shell : pwsh
61- if : ${{ matrix.library == '' }}
63+ if : ${{ ! matrix.library }}
6264 - name : Install dependency library
6365 run : .\.github\workflows\vcpkg.ps1
6466 shell : pwsh
8991 REPORT_EXIT_STATUS : 1
9092 NO_INTERACTION : 1
9193
92- - if : ${{ github.event_name == 'release' && matrix.library == '' }}
94+ - if : ${{ github.event_name == 'release' && matrix.library == false }}
9395 name : Archive DLL
9496 run : |-
9597 Copy-Item .\php_${{ env.PHP_EXT }}.dll .\$env:EXT_NAME.dll
@@ -98,11 +100,11 @@ jobs:
98100 env :
99101 EXT_NAME : php_${{ env.PHP_EXT }}-${{ env.PHP_EXT_VERSION }}-${{ matrix.php }}-${{ matrix.ts }}-${{ matrix.vs }}-${{ matrix.arch == 'x64' && 'x86_64' || matrix.arch }}
100102
101- - if : ${{ github.event_name == 'release' && matrix.library == '' }}
103+ - if : ${{ github.event_name == 'release' && matrix.library == false }}
102104 name : Store archive DLL
103105 uses : actions/upload-artifact@v4
104106 with :
105- name : ${{ env.PHP_EXT }}-${{ env. PHP_EXT_VERSION }}-${{ matrix.php }}-${{ matrix.ts }}-${{ matrix.vs }}-${{ matrix.arch == 'x64' && 'x86_64' || matrix.arch }}
107+ name : ${{ env.PHP_EXT_VERSION }}-${{ matrix.php }}-${{ matrix.ts }}-${{ matrix.vs }}-${{ matrix.arch == 'x64' && 'x86_64' || matrix.arch }}
106108 path : .\php_${{ env.PHP_EXT }}-${{ env.PHP_EXT_VERSION }}-${{ matrix.php }}-${{ matrix.ts }}-${{ matrix.vs }}-${{ matrix.arch == 'x64' && 'x86_64' || matrix.arch }}.zip
107109 overwrite : true
108110
You can’t perform that action at this time.
0 commit comments