forked from IntelPython/sdc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
64 lines (53 loc) · 1.53 KB
/
azure-pipelines.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
jobs:
- job: Windows
timeoutInMinutes: 0
pool:
vmImage: 'vs2017-win2016'
steps:
- powershell: Write-Host "##vso[task.prependpath]$env:CONDA\Scripts"
displayName: Add conda to PATH
- script: conda create -q -y -n CB python=3.7 conda-build conda-verify vc vs2015_runtime vs2015_win-64
displayName: Create Anaconda environment
- script: |
call activate CB
conda build --python 3.7 --override-channels -c numba -c conda-forge -c defaults -c intel --output-folder=. buildscripts/hpat-conda-recipe/
displayName: conda build
- template: buildscripts/azure-template-linux-macos.yml
parameters:
name: macOS
vmImage: xcode9-macos10.13
matrix:
py37_numpes0:
CONDA_ENV: 'travisci'
PYTHON_VER: '3.7'
py37_numpes2:
CONDA_ENV: 'travisci'
HPAT_NUM_PES: '2'
PYTHON_VER: '3.7'
- template: buildscripts/azure-template-linux-macos.yml
parameters:
name: Linux
vmImage: ubuntu-16.04
matrix:
py36_numpes0:
CONDA_ENV: 'travisci'
PYTHON_VER: '3.6'
py36_numpes3:
CONDA_ENV: 'travisci'
HPAT_NUM_PES: '3'
PYTHON_VER: '3.6'
py37_numpes0:
CONDA_ENV: 'travisci'
PYTHON_VER: '3.7'
py37_numpes1:
CONDA_ENV: 'travisci'
HPAT_NUM_PES: '1'
PYTHON_VER: '3.7'
py37_numpes2:
CONDA_ENV: 'travisci'
HPAT_NUM_PES: '2'
PYTHON_VER: '3.7'
py37_numpes3:
CONDA_ENV: 'travisci'
HPAT_NUM_PES: '3'
PYTHON_VER: '3.7'