-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathappveyor.yml
31 lines (24 loc) · 982 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
# Specify version format
version: "{build}"
# specify custom environment variables
environment:
PYTHON_VERSION: 3.6
MINICONDA: C:\Miniconda36-x64
# clone directory
clone_folder: C:\projects\bigartm-install
install:
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda info -a
- conda install -c conda-forge numpy scipy pandas pytest
- conda install -c conda-forge tqdm
- ps: C:\projects\bigartm-install\install.ps1
build: off
test_script:
- "set PATH=C:\\BigARTM\\bin;%PATH%"
- python C:\projects\bigartm-install\canary_test.py
#- bigartm.exe # need to fix error code for bigartm.exe?
# Enable RDP connection to test server as described here: http://www.appveyor.com/docs/how-to/rdp-to-build-worker
#on_finish:
#- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))