-
Notifications
You must be signed in to change notification settings - Fork 4
/
.appveyor.yml
42 lines (42 loc) · 1.4 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
40
41
42
version: '{build}'
image: Visual Studio 2019
platform:
- x86
- x64
environment:
matrix:
- PYTHON: 36
- PYTHON: 37
- PYTHON: 38
- PYTHON: 39
install:
- ps: |
git submodule update -q --init --recursive
if ($env:PYTHON) {
if ($env:PLATFORM -eq "x64") { $env:PYTHON = "$env:PYTHON-x64" }
$env:PATH = "C:\Python$env:PYTHON\;C:\Python$env:PYTHON\Scripts\;$env:PATH"
python -m pip install --disable-pip-version-check --upgrade pip setuptools wheel pytest
pip install -r .\dev-requirements.txt
} elseif ($env:CONDA) {
if ($env:CONDA -eq "27") { $env:CONDA = "" }
if ($env:PLATFORM -eq "x64") { $env:CONDA = "$env:CONDA-x64" }
$env:PATH = "C:\Miniconda$env:CONDA\;C:\Miniconda$env:CONDA\Scripts\;$env:PATH"
conda config --set always_yes yes --set changeps1 no
conda config --add channels conda-forge
conda update -q conda
conda install -q conda-build
}
build_script:
- ps: |
if ($env:PYTHON) {
# python .\setup.py sdist
cmd.exe --% /c call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" %PLATFORM% & python .\setup.py bdist_wheel
pip install mahi-gui --no-index -f .\dist\
} else {
conda build conda.recipe
conda install --use-local mahi_gui
}
test_script:
- pytest -q
artifacts:
- path: 'dist\*'