xref: /ext-fiber/.appveyor.yml (revision 526d4440)
1# general configuration
2version: '{branch}.{build}'
3
4# environment configuration
5image: Visual Studio 2019
6clone_folder: C:\projects\ext-fiber
7environment:
8  BIN_SDK_VER: 2.2.0
9  matrix:
10    - PHP_VER: 8.0
11      TS: 0
12      VC: vs16
13      ARCH: x64
14      OPCACHE: 0
15    - PHP_VER: 8.0
16      TS: 1
17      VC: vs16
18      ARCH: x64
19      OPCACHE: 1
20    - PHP_VER: 8.0
21      TS: 0
22      VC: vs16
23      ARCH: x86
24      OPCACHE: 0
25    - PHP_VER: 8.0
26      TS: 1
27      VC: vs16
28      ARCH: x86
29      OPCACHE: 1
30cache:
31  - C:\build-cache -> .appveyor.yml, .appveyor\install.ps1
32install:
33  - ps: .appveyor\install.ps1
34
35# build configuration
36build_script:
37  - ps: .appveyor\build.ps1
38
39after_build:
40  - ps: .appveyor\package.ps1
41
42# tests configuration
43test_script:
44  - ps: .appveyor\test.ps1
45