You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: appveyor.yml
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -12,19 +12,22 @@ environment:
12
12
- BUILD_TYPE: "Release"
13
13
COMPILER: MSVC15
14
14
PLATFORM: "Win32"
15
+
PYTHON_VERSION: 27
15
16
CONDA_INSTALL_LOCN: C:\\Miniconda35
16
17
WITH_MPFR: yes
17
18
WITH_MPC: yes
18
19
- BUILD_TYPE: "Release"
19
20
COMPILER: MSVC15
20
21
PLATFORM: "x64"
22
+
PYTHON_VERSION: 35-x64
21
23
CONDA_INSTALL_LOCN: C:\\Miniconda35-x64
22
24
WITH_MPFR: yes
23
25
WITH_MPC: yes
24
26
WITH_LLVM: yes
25
27
- BUILD_TYPE: "Release"
26
28
COMPILER: MSVC15
27
29
PLATFORM: "x64"
30
+
PYTHON_VERSION: 36-x64
28
31
CONDA_INSTALL_LOCN: C:\\Miniconda36-x64
29
32
# - BUILD_TYPE: "Debug"
30
33
# COMPILER: MinGW
@@ -48,7 +51,8 @@ install:
48
51
- if [%COMPILER%]==[MSVC15] conda update --yes --quiet conda
49
52
- if [%COMPILER%]==[MSVC15] conda config --add channels conda-forge
50
53
- if [%COMPILER%]==[MSVC15] if [%BUILD_TYPE%]==[Debug] conda config --add channels symengine/label/debug
51
-
- if [%COMPILER%]==[MSVC15] conda install --yes mpir=3.0.0
54
+
- if [%COMPILER%]==[MSVC15] conda create -n test --yes mpir=3.0.0 vc=14
55
+
- if [%COMPILER%]==[MSVC15] activate test
52
56
- if [%COMPILER%]==[MSVC15] if [%WITH_MPFR%]==[yes] conda install --yes mpfr=3.1.5
53
57
- if [%COMPILER%]==[MSVC15] if [%WITH_MPC%]==[yes] conda install --yes mpc=1.0.3
54
58
- if [%COMPILER%]==[MSVC15] if [%WITH_LLVM%]==[yes] conda install --yes llvmdev=3.9
@@ -71,7 +75,7 @@ install:
71
75
- if NOT [%COMPILER%]==[MSVC15] call symengine-cpp\bin\appveyor-download.cmd "https://raw.githubusercontent.com/symengine/dependencies/dcc10cce2133e2b57e61c5ced6120139bbcdfa20/python-libs-mingw32.7z" -FileName pylibs.7z
72
76
- if NOT [%COMPILER%]==[MSVC15] 7z x -aoa -oC:\ pylibs.7z > NUL
73
77
74
-
- if NOT [%COMPILER%]==[MSVC15] set C:\Python%PYTHON_VERSION%;C:\Python%PYTHON_VERSION%\Scripts;PATH=%PATH%
78
+
- set PATH=C:\Python%PYTHON_VERSION%;C:\Python%PYTHON_VERSION%\Scripts;%PATH%
0 commit comments