version bump to 1.2.5 #187
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows | |
on: | |
pull_request: null | |
push: | |
branches: | |
- master | |
- develop | |
- release | |
schedule: | |
- cron: "30 4 * * *" | |
jobs: | |
build: | |
defaults: | |
run: | |
shell: cmd | |
strategy: | |
matrix: | |
version: ["8.0", "8.1", "8.2", "8.3", "8.4"] | |
arch: [x64] | |
ts: [ts] | |
if: success() || failure() | |
runs-on: windows-2022 | |
name: Windows, PHP v${{matrix.version}} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
id: setup-php | |
uses: php/setup-php-sdk@v0.9 | |
with: | |
version: ${{matrix.version}} | |
arch: ${{matrix.arch}} | |
ts: ${{matrix.ts}} | |
- name: Fetch dependencies | |
run: | | |
curl -LO https://downloads.php.net/~windows/pecl/deps/pthreads-3.0.0-vs16-${{matrix.arch}}.zip | |
7z x pthreads-3.0.0-vs16-${{matrix.arch}}.zip -o..\deps | |
- name: Enable Developer Command Prompt | |
uses: ilammy/msvc-dev-cmd@v1 | |
with: | |
arch: ${{matrix.arch}} | |
toolset: ${{steps.setup-php.outputs.toolset}} | |
- name: phpize | |
run: phpize | |
- name: configure | |
run: configure --with-parallel --enable-debug-pack --with-prefix=${{steps.setup-php.outputs.prefix}} | |
- name: make | |
run: nmake | |
- name: test | |
run: nmake test TESTS="--show-diff tests" | |
- name: package | |
run: | | |
md .install | |
copy LICENSE .install | |
copy README.md .install | |
if exist x64 ( | |
if exist x64\Release (set prefix=x64\Release) else set prefix=x64\Release_TS | |
) else ( | |
if exist Release (set prefix=Release) else set prefix=Release_TS | |
) | |
copy %prefix%\php_parallel.dll .install | |
copy %prefix%\php_parallel.pdb .install | |
copy ..\deps\COPYING .install\COPYING.PTHREADS | |
copy ..\deps\bin\* .install | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: parallel-${{matrix.version}} | |
path: .install |