-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathappveyor.yml
More file actions
32 lines (24 loc) · 757 Bytes
/
appveyor.yml
File metadata and controls
32 lines (24 loc) · 757 Bytes
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
image: Visual Studio 2015
platform: x64
shallow_clone: true
install:
- 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 CONFIG+=NO_UI
- 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