forked from coin-or/Cgl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
33 lines (29 loc) · 1.45 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
platform:
- x64
environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
ARCH: win32-msvc14
HOST_ARCH_ARG: --enable-msvc
ADD_PATH: /mingw64/bin
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
ARCH: win32-msvc15
HOST_ARCH_ARG: --enable-msvc
ADD_PATH: /mingw64/bin
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
ARCH: x86_64-w64-mingw32
HOST_ARCH_ARG: --host=x86_64-w64-mingw32
ADD_PATH: /mingw64/bin
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
ARCH: i686-w64-mingw32
HOST_ARCH_ARG: --host=i686-w64-mingw32
ADD_PATH: /mingw32/bin
install:
- IF %ARCH%==win32-msvc14 (CALL C:\"Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat")
- IF %ARCH%==win32-msvc15 (CALL C:\"Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x64 8.1)
- C:\msys64\usr\bin\bash -lc ""
build_script:
- C:\msys64\usr\bin\bash -lc "cd C:\projects; ln -s cgl-e24vn Cgl;wget https://raw.githubusercontent.com/coin-or/coinbrew/master/coinbrew"
- C:\msys64\usr\bin\bash -lc "cd C:\projects; ./coinbrew fetch https://github.com/%APPVEYOR_REPO_NAME%:%APPVEYOR_REPO_BRANCH% --no-prompt --no-third-party --skip-update"
- C:\msys64\usr\bin\bash -lc "cd C:\projects; export PATH=$ADD_PATH:$PATH; ./coinbrew build %APPVEYOR_PROJECT_NAME% --no-prompt --no-third-party --build=x86_64-w64-mingw32 $HOST_ARCH_ARG --verbosity=4 --test"
test: off