forked from drons/nbody
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
34 lines (26 loc) · 972 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
image: Visual Studio 2015
platform: x64
shallow_clone: true
install:
- ps: wget "https://drive.google.com/uc?export=download&id=0B2FFdHlMfJl_cW9PeUplRVFtUWs" -OutFile opencv-2.4.12-github-vc14-release-travis.rar
- cmd: 7z x opencv-2.4.12-github-vc14-release-travis.rar -o"C:\projects" -y > nul
- set PATH=C:\projects\opencv\x64\vc14\bin;%PATH%
- call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64
- set QTDIR=C:\Qt\5.11\msvc2015_64
- '%QTDIR%\bin\qtenv2.bat'
- qmake -v
build_script:
- mkdir C:\projects\nbody\build-release
- cd C:\projects\nbody\build-release
- qmake ..\nbody.pro CONFIG+=release
- call C:\Qt\Tools\QtCreator\bin\jom
after_build:
- 7z a C:\projects\nbody\build-release.zip C:\projects\nbody\build-release
test_script:
- set PATH=C:\projects\nbody\build-release\lib;%PATH%
- test\engine\engine
- test\solver\solver
- test\solvers_equality\solvers_equality
#artifacts:
#- path: build-release.zip
deploy: off