forked from anholt/libepoxy
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathappveyor.yml
22 lines (22 loc) · 847 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
version: 1.3.1.{build}
pull_requests:
do_not_increment_build_number: true
os: Windows Server 2012 R2
shallow_clone: true
build_script:
- cd "%APPVEYOR_BUILD_FOLDER%"
- mkdir build64
- mkdir build32
- mkdir output64
- mkdir output32
- cd build32
- cmake -G "Visual Studio 12 2013" -DCMAKE_INSTALL_PREFIX="%APPVEYOR_BUILD_FOLDER%\output32" ..
- msbuild INSTALL.vcxproj /p:Configuration=RelWithDebInfo /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
- cd ..\build64
- cmake -G "Visual Studio 12 2013 Win64" -DCMAKE_INSTALL_PREFIX="%APPVEYOR_BUILD_FOLDER%\output64" ..
- msbuild INSTALL.vcxproj /p:Configuration=RelWithDebInfo /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
artifacts:
- path: .\output32\
name: epoxy-vc12-x86_64
- path: .\output64\
name: epoxy-vc12-x86