-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathappveyor.yml
22 lines (19 loc) · 1.06 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
platform:
- x64
environment:
matrix:
- 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:
- for /f "delims=" %%i in ('C:\msys64\usr\bin\bash -lc "if [ $APPVEYOR_REPO_BRANCH = 'master' ]; then echo 'master'; else echo $APPVEYOR_REPO_BRANCH | cut -d "/" -f 2; fi"') do set VERSION=%%i
- C:\msys64\usr\bin\bash -lc ""
build_script:
- C:\msys64\usr\bin\bash -lc "cd C:\projects; 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 --skip-update"
- C:\msys64\usr\bin\bash -lc "cd C:\projects; export PATH=$ADD_PATH:$PATH; ./coinbrew build %APPVEYOR_PROJECT_NAME% --no-prompt --build=x86_64-w64-mingw32 $HOST_ARCH_ARG --verbosity=4 --test"