forked from usnistgov/fipy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
114 lines (91 loc) · 3.85 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# This file was adapted from what's generated by conda-smithy.
image:
- Visual Studio 2015
- Visual Studio 2019
environment:
matrix:
- TARGET_ARCH: x64
CONDA_PY: 27
CONDA_INSTALL_LOCN: C:\\Miniconda-x64
FIPY_SOLVERS: pysparse
# - TARGET_ARCH: x64
# CONDA_PY: 27
# CONDA_INSTALL_LOCN: C:\\Miniconda-x64
# FIPY_SOLVERS: pysparse
# FIPY_INLINE: 1
# - TARGET_ARCH: x86
# CONDA_PY: 27
# CONDA_INSTALL_LOCN: C:\\Miniconda
# FIPY_SOLVERS: scipy
- TARGET_ARCH: x64
CONDA_PY: 27
CONDA_INSTALL_LOCN: C:\\Miniconda-x64
FIPY_SOLVERS: scipy
# - TARGET_ARCH: x86
# CONDA_PY: 36
# CONDA_INSTALL_LOCN: C:\\Miniconda36
# FIPY_SOLVERS: scipy
- TARGET_ARCH: x64
CONDA_PY: 36
CONDA_INSTALL_LOCN: C:\\Miniconda36-x64
FIPY_SOLVERS: scipy
matrix:
exclude:
- image: Visual Studio 2015
CONDA_PY: 36
- image: Visual Studio 2019
CONDA_PY: 27
# We always use a 64-bit machine, but can build x86 distributions
# with the TARGET_ARCH variable.
platform:
- x64
install:
# If there is a newer build queued for the same PR, cancel this one.
- cmd: |
powershell -Command "(New-Object Net.WebClient).DownloadFile('https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py', 'ff_ci_pr_build.py')"
ff_ci_pr_build -v --ci "appveyor" "%APPVEYOR_ACCOUNT_NAME%/%APPVEYOR_PROJECT_SLUG%" "%APPVEYOR_BUILD_NUMBER%" "%APPVEYOR_PULL_REQUEST_NUMBER%"
del ff_ci_pr_build.py
# Cywing's git breaks conda-build. (See https://github.com/conda-forge/conda-smithy-feedstock/pull/2.)
- cmd: rmdir C:\cygwin /s /q
# Add path, activate `conda` and update conda.
- cmd: call %CONDA_INSTALL_LOCN%\Scripts\activate.bat
- cmd: conda.exe update --yes --quiet conda
- cmd: set PYTHONUNBUFFERED=1
# Add our channels.
- cmd: conda.exe config --set show_channel_urls true
- cmd: conda.exe config --set always_yes yes
- cmd: conda.exe config --set changeps1 no
- cmd: conda.exe config --remove channels defaults
- cmd: conda.exe config --add channels defaults
- cmd: conda.exe config --add channels conda-forge
# Configure the VM.
- cmd: if "%TARGET_ARCH%" == "x64" if "%CONDA_PY%" == "27" conda.exe install --quiet --name root python=2.7 fipy
- cmd: if "%TARGET_ARCH%" == "x64" if "%CONDA_PY%" == "36" conda.exe install --quiet --name root python=3.6 fipy "gmsh<4.0"
- cmd: conda.exe remove --quiet --force fipy
# FIXME: fipy recipe on conda-forge doesn't have gmsh compatible with Python 2.7
- ps: |
$ErrorActionPreference = "Stop";
if (($env:TARGET_ARCH -eq "x64") -and ($env:CONDA_PY -eq "27")) {
Invoke-WebRequest -Uri 'https://gmsh.info/bin/Windows/gmsh-4.3.0-Windows64.zip' -OutFile gmsh-4.3.0-Windows64.zip
Add-Type -A 'System.IO.Compression.FileSystem'
Expand-Archive gmsh-4.3.0-Windows64.zip -DestinationPath .
copy gmsh-4.3.0-Windows64\gmsh.exe $env:CONDA_INSTALL_LOCN\Scripts\
}
- cmd: if "%TARGET_ARCH%" == "x86" conda.exe install --quiet --name root python numpy scipy matplotlib
- cmd: if "%TARGET_ARCH%" == "x86" if "%CONDA_PY%" == "27" conda.exe install --quiet --name root mayavi weave
- cmd: if "%TARGET_ARCH%" == "x86" if "%FIPY_SOLVERS%" == "pysparse" conda.exe install --quiet --name root pysparse
- cmd: pip install scikit-fmm
# Skip .NET project specific build phase.
build: off
build_script:
- python setup.py release --windows
test_script:
- python setup.py egg_info
- if defined FIPY_INLINE python setup.py test 1> NUL 2>&1
- python setup.py test --deprecation-errors
- conda env export
artifacts:
- path: dist\FiPy-*.zip
name: Win Installer
# deploy_script:
# - cmd: upload_or_check_non_existence .\recipe guyer --channel=main