-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
.appveyor.yml
67 lines (64 loc) · 1.36 KB
/
.appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# general configuration
version: '{branch}.{build}'
# environment configuration
image: Visual Studio 2017
clone_folder: C:\projects\php_simple_kafka_client
environment:
BIN_SDK_VER: 2.2.0
DEP: librdkafka-1.6.2
matrix:
- PHP_VER: 7.4
TS: 0
VC: vc15
ARCH: x64
OPCACHE: 0
- PHP_VER: 7.4
TS: 1
VC: vc15
ARCH: x64
OPCACHE: 1
- PHP_VER: 8.0
TS: 0
VC: vs16
ARCH: x64
OPCACHE: 0
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
- PHP_VER: 8.0
TS: 1
VC: vs16
ARCH: x64
OPCACHE: 1
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
- PHP_VER: 8.1
TS: 0
VC: vs16
ARCH: x64
OPCACHE: 0
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
- PHP_VER: 8.1
TS: 1
VC: vs16
ARCH: x64
OPCACHE: 1
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
- PHP_VER: 8.2
TS: 0
VC: vs16
ARCH: x64
OPCACHE: 0
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
- PHP_VER: 8.2
TS: 1
VC: vs16
ARCH: x64
OPCACHE: 1
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
cache:
- C:\build-cache -> .appveyor.yml, .appveyor\install.ps1
install:
- ps: .appveyor\install.ps1
# build configuration
build_script:
- ps: .appveyor\build.ps1
after_build:
- ps: .appveyor\package.ps1