Update vendor name to apcu #164
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: Build and Test | |
on: [push, pull_request] | |
jobs: | |
ubuntu: | |
strategy: | |
matrix: | |
version: ["7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3", "8.4"] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout apcu | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{matrix.version}} | |
- name: phpize | |
run: phpize | |
- name: configure | |
run: ./configure --enable-apcu-debug | |
- name: make | |
run: make | |
- name: test | |
run: | | |
make test TESTS="--show-diff -d apc.serializer=default tests" | |
make test TESTS="--show-diff -d apc.serializer=php tests" | |
make test TESTS="--show-diff -d apc.serializer=default -d opcache.enable_cli=1 tests" | |
make test TESTS="--show-diff -d apc.serializer=php -d opcache.enable_cli=1 tests" | |
windows: | |
defaults: | |
run: | |
shell: cmd | |
strategy: | |
matrix: | |
version: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"] | |
arch: [x64] | |
ts: [nts, ts] | |
os: [windows-2019, windows-2022] | |
exclude: | |
- { os: windows-2019, version: "8.3" } | |
- { os: windows-2019, version: "8.2" } | |
- { os: windows-2019, version: "8.1" } | |
- { os: windows-2019, version: "8.0" } | |
- { os: windows-2022, version: "7.4" } | |
- { os: windows-2022, version: "7.3" } | |
- { os: windows-2022, version: "7.2" } | |
runs-on: ${{matrix.os}} | |
steps: | |
- name: Checkout apcu | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
id: setup-php | |
uses: php/setup-php-sdk@1248285eaa27e8fe99a03ad2108cf062669ac3f4 | |
with: | |
version: ${{matrix.version}} | |
arch: ${{matrix.arch}} | |
ts: ${{matrix.ts}} | |
- 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 --enable-apcu --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 | |
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_apcu.dll .install | |
copy %prefix%\php_apcu.pdb .install | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: apcu-${{matrix.version}}-${{matrix.arch}}-${{matrix.ts}} | |
path: .install |