Skip to content

Commit 38acaa6

Browse files
committed
Add appveyor.yml
1 parent bb4dfa6 commit 38acaa6

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.appveyor.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
environment:
2+
CONDA_INSTALL_LOCN: C:\\Miniconda36-x64
3+
4+
platform:
5+
- x64
6+
7+
install:
8+
# Add path, activate `conda` and update conda.
9+
- cmd: call %CONDA_INSTALL_LOCN%\Scripts\activate.bat
10+
- cmd: conda update --yes --quiet conda
11+
# Add our channels.
12+
- cmd: conda config --add channels defaults
13+
- cmd: conda config --add channels conda-forge
14+
- cmd: conda config --add channels isuruf/label/flang
15+
- cmd: conda install clangdev openmp cmake
16+
17+
18+
build_script:
19+
- mkdir build
20+
- cd build
21+
- set "PATH=%cd%\bin;%PATH%"
22+
- call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
23+
- nmake

0 commit comments

Comments
 (0)