forked from IntelPython/mkl_random
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
31 lines (29 loc) · 950 Bytes
/
.travis.yml
File metadata and controls
31 lines (29 loc) · 950 Bytes
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
matrix:
include:
- name: "Linux-Py3"
os: linux
env:
- MINICONDA=Miniconda3-latest-Linux-x86_64.sh
- PYVER=""
- name: "OsX-Py3"
os: osx
osx_image: xcode8
env:
- MATRIX_EVAL="brew install gcc && CC=gcc-7 && CXX=g++-7"
- MINICONDA=Miniconda3-latest-MacOSX-x86_64.sh
- MACOSX_DEPLOYMENT_TARGET="10.9"
- PYVER=""
install:
- wget https://repo.continuum.io/miniconda/$MINICONDA -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda install -c conda-forge conda-forge::conda-build
# Useful for debugging any issues with conda
- conda info -a
- gcc -v
- g++ -v
script:
- conda build -c intel -c conda-forge --override-channels $PYVER conda-recipe