Skip to content

try to fix Windows build #959

try to fix Windows build

try to fix Windows build #959

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
all-linux:
name: Linux - PHP ${{ matrix.php }}
strategy:
fail-fast: false
matrix:
include:
- php: 8.1.33
opcache-shared: true
- php: 8.2.29
opcache-shared: true
- php: 8.3.25
opcache-shared: true
- php: 8.4.12
opcache-shared: true
- php: 8.5.0beta3
opcache-shared: false
uses: ./.github/workflows/main-php-matrix.yml
with:
php: ${{ matrix.php }}
secrets: inherit
all-windows:
name: Windows - PHP ${{ matrix.php }}
strategy:
fail-fast: false
matrix:
include:
- php: 8.1.33
vs-crt: vs16
opcache-shared: true
- php: 8.2.29
vs-crt: vs16
opcache-shared: true
- php: 8.3.25
vs-crt: vs16
opcache-shared: true
- php: 8.4.12
vs-crt: vs17
opcache-shared: true
- php: 8.5.0beta3
vs-crt: vs17
opcache-shared: false
uses: ./.github/workflows/main-php-matrix-windows.yml
with:
php: ${{ matrix.php }}
vs-crt: ${{ matrix.vs-crt }}
secrets: inherit