Skip to content

Commit

Permalink
update windows runs
Browse files Browse the repository at this point in the history
  • Loading branch information
marcing committed Feb 1, 2024
1 parent ba1760b commit a7b6631
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
php: ['7.3', '7.4', '8.0', '8.1', '8.2']

steps:
- name: Checkout Code
Expand All @@ -48,12 +48,13 @@ jobs:
- name: Setup PHP ${{ matrix.php }}
uses: php/[email protected]
with:
php-version: ${{ matrix.php }}
ini-values: apc.enable_cli=1, opcache.enable=1, opcache.enable_cli=1, opcache.jit=tracing, opcache.jit_buffer_size=128M
version: ${{ matrix.php }}
arch: x64
ts: nts
env:
fail-fast: true

- name: "Run Tests"
run: |
php ./tests/run.php
php -d apc.enable_cli=1 -d opcache.enable=1 -d opcache.enable_cli=1 -d opcache.jit=tracing -d opcache.jit_buffer_size=128M ./tests/run.php
continue-on-error: "${{ matrix.allow-failure == true }}"

0 comments on commit a7b6631

Please sign in to comment.