forked from ctlee/gamer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.appveyor.yml
More file actions
39 lines (31 loc) · 771 Bytes
/
.appveyor.yml
File metadata and controls
39 lines (31 loc) · 771 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
31
32
33
34
35
36
37
38
39
notifications:
- provider: Slack
on_build_status_changed: true
incoming_webhook:
secure: bmfSFbqVVCm0/XYaDqAVMGeBP6RNW1f/yzolevVJ1GXCZZHejnpU1aPG8LIYDskbaudyf1Obaf5ua5WTKRqQJm79EGCYiH6NGPq6qhTyMV0=
version: 2.0.2.{build}
branches:
only:
- master
- development
image:
- Visual Studio 2017
platform:
- x64
environment:
matrix:
- PYTHON: "C:\\Python37-x64"
matrix:
fast_finish: true
install:
- SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%
- python --version
- python -m pip install --upgrade pip wheel
- python -m pip install pytest numpy --no-warn-script-location
- mkdir build_64
- cd build_64
- cmake -DGETEIGEN=on -DGAMER_TESTS=on -DBUILD_PYGAMER=on -A x64 ..
build_script:
- cmake --build . --config Release
test_script:
- ctest -C Release -V