Skip to content

Commit

Permalink
Test PHP 8.4 on Windows, too
Browse files Browse the repository at this point in the history
While caching speeds up the Windows builds, allocating an available
runner takes some time (especially for many pushes in a short time).
Thus we only build PHP 8.4 x64,zts, which should already suffice to
detect most issues.
  • Loading branch information
cmb69 committed Sep 30, 2024
1 parent 5cf13f8 commit e9cd17e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@ jobs:
shell: cmd
strategy:
matrix:
version: ['8.3']
version: ['8.3', '8.4']
arch: [x64, x86]
ts: [nts, zts]
exclude:
- { version: '8.4', arch: x64, ts: zts }
- { version: '8.4', arch: x86, ts: nts }
- { version: '8.4', arch: x86, ts: zts }
runs-on: windows-latest
steps:
- name: Checkout memcached
Expand Down

0 comments on commit e9cd17e

Please sign in to comment.