Skip to content

Commit

Permalink
Use caching for Windows CI and add PHP 7.0/7.1 to matrix (#528)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmb69 authored Sep 30, 2024
1 parent 5d9a52e commit f1aed54
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 119 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
shell: cmd
strategy:
matrix:
version: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3", "8.4"]
version: ["7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3", "8.4"]
arch: [x64]
ts: [nts, ts]
os: [windows-2019, windows-2022]
Expand All @@ -44,17 +44,20 @@ jobs:
- { os: windows-2022, version: "7.4" }
- { os: windows-2022, version: "7.3" }
- { os: windows-2022, version: "7.2" }
- { os: windows-2022, version: "7.1" }
- { os: windows-2022, version: "7.0" }
runs-on: ${{matrix.os}}
steps:
- name: Checkout apcu
uses: actions/checkout@v4
- name: Setup PHP
id: setup-php
uses: php/setup-php-sdk@8d9e79bdbce494591e33d542377778613cfca59f
uses: php/setup-php-sdk@v0.10
with:
version: ${{matrix.version}}
arch: ${{matrix.arch}}
ts: ${{matrix.ts}}
cache: true
- name: Enable Developer Command Prompt
uses: ilammy/msvc-dev-cmd@v1
with:
Expand Down
117 changes: 0 additions & 117 deletions appveyor.yml

This file was deleted.

0 comments on commit f1aed54

Please sign in to comment.