forked from cpputest/cpputest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
32 lines (25 loc) · 886 Bytes
/
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
version: 3.7.0-ci{build}
os:
- Windows Server 2012 R2
environment:
matrix:
- PlatformToolset: Cygwin
- PlatformToolset: MinGW
Platform: Win32
- PlatformToolset: MinGW
Platform: x64
- PlatformToolset: v90
- PlatformToolset: v100
install:
- ps: if ($env:PlatformToolset -eq 'MinGW') { choco install mingw $( if ($env:Platform -eq 'Win32') { Write-Output -forcex86 } ) }
- ps: if ($env:PlatformToolset -eq 'Cygwin') { (New-Object System.Net.WebClient).DownloadFile('https://cygwin.com/setup-x86.exe', "${env:TEMP}\cygwin-setup.exe") ; . "${env:TEMP}\cygwin-setup.exe" --quiet-mode --packages autoconf automake make gcc-core libtool gcc-g++ }
build_script:
- ps: scripts\appveyor_ci_build.ps1
test_script:
- ps: scripts\appveyor_ci_test.ps1
artifacts:
- path: lib\CppUTest.lib
name: CppUTest
# Other configuration options
platform: Win32
configuration: Release