forked from alrik-durand/qudi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
36 lines (28 loc) · 927 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
33
34
35
36
#branches:
# only:
# - master
environment:
global:
PYTHON: "C:\\miniconda"
PYTHON_ARCH: "64" # needs to be set for CMD_IN_ENV to succeed. If a mix
# of 32 bit and 64 bit builds are needed, move this
# to the matrix section.
platform:
-x64
install:
- "powershell %APPVEYOR_BUILD_FOLDER%\\tools\\setup_conda_windows.ps1"
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- 'conda env remove --yes --name qudi || exit 0'
- "conda env create -f %APPVEYOR_BUILD_FOLDER%\\tools\\conda-env-win8-qt5.yml"
- "activate qudi"
- "python %APPVEYOR_BUILD_FOLDER%\\core\\qudikernel.py install"
# Not a .NET project, we build in the install step instead
build: false
test_script:
- sh "%APPVEYOR_BUILD_FOLDER%\\tools\\test.sh"
artifacts:
- path: qudi.log
name: Qudi log file
- path: notebooks
name: test notebooks
type: zip