-
Notifications
You must be signed in to change notification settings - Fork 141
/
.appveyor.yml
39 lines (30 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#branches:
# only:
# - master
image: Visual Studio 2017
platform:
-x64
environment:
global:
PYTHON: "C:\\Miniconda36-x64"
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.
install:
# - "powershell %APPVEYOR_BUILD_FOLDER%\\tools\\setup_conda_windows.ps1"
# on need to install miniconda, it is already present on appveyor: https://www.appveyor.com/docs/build-environment/#python
- "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