forked from ornladios/ADIOS2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
94 lines (86 loc) · 2.2 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
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
trigger:
- master
- release*
pr:
autoCancel: true
branches:
include:
- master
- release*
resources:
containers:
- container: el7-intel-ohpc
image: ornladios/adios2:ci-el7-intel-ohpc
options: --shm-size=1g
- container: el7-intel-openmpi-ohpc
image: ornladios/adios2:ci-el7-intel-openmpi-ohpc
options: --shm-size=1g
jobs:
- job: windows
timeoutInMinutes: 90
strategy:
matrix:
win2016_vs2017:
hostImage: vs2017-win2016
win2016_vs2017_msmpi_ninja:
hostImage: vs2017-win2016
win2019_vs2019_ninja:
hostImage: windows-2019
win2019_vs2019_msmpi:
hostImage: windows-2019
pool:
vmImage: $[ variables['hostImage'] ]
steps:
- powershell: scripts/ci/azure/windows-setup.ps1
name: Setup
- bash: scripts/ci/azure/run.sh update
name: Update
- bash: scripts/ci/azure/run.sh configure
name: Configure
- bash: scripts/ci/azure/run.sh build
name: Build
- bash: scripts/ci/azure/run.sh test
name: Test
- job: macos
timeoutInMinutes: 90
strategy:
matrix:
macos1014_xcode103_ninja:
hostImage: 'macOS-10.14'
macos1015_xcode111_make:
hostImage: 'macOS-10.15'
pool:
vmImage: $[ variables['hostImage'] ]
steps:
- bash: scripts/ci/azure/macos-setup.sh
name: Setup
- bash: scripts/ci/azure/run.sh update
name: Update
- bash: scripts/ci/azure/run.sh configure
name: Configure
- bash: scripts/ci/azure/run.sh build
name: Build
- bash: scripts/ci/azure/run.sh test
name: Test
- job: linux
timeoutInMinutes: 90
strategy:
matrix:
el7_intel_ohpc:
containerResource: el7-intel-ohpc
el7_intel_openmpi_ohpc:
containerResource: el7-intel-openmpi-ohpc
container: $[ variables['containerResource'] ]
steps:
- bash: scripts/ci/azure/linux-setup.sh
env:
INTEL_LICENSE_FILE_CONTENT: $(INTEL_LICENSE_FILE_CONTENT)
name: Setup
- bash: scripts/ci/azure/run.sh update
name: Update
- bash: scripts/ci/azure/run.sh configure
name: Configure
- bash: scripts/ci/azure/run.sh build
name: Build
- bash: scripts/ci/azure/run.sh test
name: Test