forked from Alpine-DAV/ascent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
399 lines (373 loc) · 13.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
###############################################################################
# Ascent CI Checks
###############################################################################
# Ref:
# https://aka.ms/yaml
#####
# TO USE A NEW CONTAINER, UPDATE TAG NAME HERE AS PART OF YOUR PR!
#####
variables:
ubuntu_18_tag : alpinedav/ascent-ci:ubuntu-18-devel-tpls_2021-09-13-sha4bcf80
ubuntu_18_cuda_tag : alpinedav/ascent-ci:ubuntu-18-cuda-10.1-devel-tpls_2021-09-13-sha4bcf80
ubuntu_18_cuda_11_4_0_tag: alpinedav/ascent-ci:ubuntu-18.04-cuda-11.4.0-devel-tpls_2021-09-13-sha4bcf80
ubuntu_20_10_tag: alpinedav/ascent-ci:ubuntu-20.10-devel-tpls_2021-09-13-sha4bcf80
ubuntu_21_04_tag: alpinedav/ascent-ci:ubuntu-21.04-devel-tpls_2021-09-13-sha4bcf80
# only build merge target pr to develop
trigger: none
pr:
branches:
include:
- develop
# fast fail sanity checks
stages:
- stage: Sanity
jobs:
- job: BLT_Time_Travel_Check
pool:
vmImage: 'ubuntu-latest'
steps:
- checkout: self
clean: boolean
submodules: recursive
- script: |
#######################################
# run our sanity check script
#######################################
git fetch
python scripts/ci/check_blt_time_travel.py
displayName: 'BLT Time Travel Check'
# main checks build using docker containers that
# include tpls built with uber
- stage: Main
jobs:
- job: Main_Ubuntu
pool:
vmImage: 'ubuntu-latest'
timeoutInMinutes: 0
variables:
COMPILER_CC: gcc
COMPILER_CXX: g++
COMPILER_FC: gfortran
strategy:
matrix:
ubuntu_18_minimal:
containerImage: ${{ variables.ubuntu_18_tag }}
BUILD_SHARED_LIBS: ON
CMAKE_BUILD_TYPE: Debug
ENABLE_PYTHON: OFF
ENABLE_VTKH: OFF
ENABLE_MFEM: OFF
ENABLE_BABELFLOW: OFF
ENABLE_ADIOS2: OFF
ENABLE_FIDES: OFF
BLT_CXX_STD: c++11
ubuntu_18_shared_py_cxx11:
containerImage: ${{ variables.ubuntu_18_tag }}
BUILD_SHARED_LIBS: ON
CMAKE_BUILD_TYPE: Debug
ENABLE_PYTHON: ON
ENABLE_VTKH: ON
ENABLE_MFEM: ON
ENABLE_BABELFLOW: OFF
ENABLE_ADIOS2: OFF
ENABLE_FIDES: OFF
BLT_CXX_STD: c++11
ubuntu_18_shared_py_cxx11_bflow:
containerImage: ${{ variables.ubuntu_18_tag }}
BUILD_SHARED_LIBS: ON
CMAKE_BUILD_TYPE: Debug
ENABLE_PYTHON: ON
ENABLE_VTKH: ON
ENABLE_MFEM: ON
ENABLE_BABELFLOW: ON
ENABLE_ADIOS2: OFF
ENABLE_FIDES: OFF
BLT_CXX_STD: c++11
ubuntu_18_shared_py_cxx11_fides:
containerImage: ${{ variables.ubuntu_18_tag }}
BUILD_SHARED_LIBS: ON
CMAKE_BUILD_TYPE: Debug
ENABLE_PYTHON: ON
ENABLE_VTKH: ON
ENABLE_MFEM: ON
ENABLE_BABELFLOW: OFF
ENABLE_ADIOS2: ON
ENABLE_FIDES: ON
BLT_CXX_STD: c++11
ubuntu_18_shared_py_cxx14:
containerImage: ${{ variables.ubuntu_18_tag }}
BUILD_SHARED_LIBS: ON
CMAKE_BUILD_TYPE: Debug
ENABLE_PYTHON: ON
ENABLE_VTKH: ON
ENABLE_MFEM: ON
ENABLE_BABELFLOW: OFF
ENABLE_ADIOS2: OFF
ENABLE_FIDES: OFF
BLT_CXX_STD: c++14
ubuntu_20_10_shared_py_cxx11:
containerImage: ${{ variables.ubuntu_20_10_tag }}
BUILD_SHARED_LIBS: ON
CMAKE_BUILD_TYPE: Debug
ENABLE_PYTHON: ON
ENABLE_VTKH: ON
ENABLE_MFEM: ON
ENABLE_BABELFLOW: OFF
ENABLE_ADIOS2: OFF
ENABLE_FIDES: OFF
BLT_CXX_STD: c++11
ubuntu_21_04_shared_py_cxx11:
containerImage: ${{ variables.ubuntu_21_04_tag }}
BUILD_SHARED_LIBS: ON
CMAKE_BUILD_TYPE: Debug
ENABLE_PYTHON: ON
ENABLE_VTKH: ON
ENABLE_MFEM: ON
ENABLE_BABELFLOW: OFF
ENABLE_ADIOS2: OFF
ENABLE_FIDES: OFF
BLT_CXX_STD: c++11
container: $[ variables['containerImage'] ]
steps:
- checkout: self
clean: boolean
submodules: recursive
- script: |
#################################
# configure
#################################
# setup compiler env vars
export CC=${COMPILER_CC}
export CXX=${COMPILER_CXX}
export FC=${COMPILER_FC}
${CC} --version
# capture current path
export ROOT_DIR=`pwd`
# find spack generated host config file
export HOST_CONFIG=`ls /uberenv_libs/*.cmake`
echo $HOST_CONFIG
# find spack installed cmake
export CMAKE_BIN_DIR=`ls -d /uberenv_libs/spack/opt/spack/*/*/cmake*/bin`
export PATH=${CMAKE_BIN_DIR}:$PATH
echo $PATH
which cmake
cmake --version
# prepare build dir
mkdir build
cd build
# setup cmake options
export CMAKE_OPTS="-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}"
export CMAKE_OPTS="${CMAKE_OPTS} -DBUILD_SHARED_LIBS=${BUILD_SHARED_LIBS}"
export CMAKE_OPTS="${CMAKE_OPTS} -DCMAKE_INSTALL_PREFIX=../install"
# c++ std
export CMAKE_OPTS="${CMAKE_OPTS} -DBLT_CXX_STD=${BLT_CXX_STD}"
# include host config
export CMAKE_OPTS="${CMAKE_OPTS} -C ${HOST_CONFIG}"
# extra settings
export CMAKE_OPTS="${CMAKE_OPTS} -DENABLE_PYTHON=${ENABLE_PYTHON} "
if [ $ENABLE_MFEM = 'OFF' ]; then export CMAKE_OPTS="${CMAKE_OPTS} -DMFEM_DIR=IGNORE"; fi
if [ $ENABLE_MFEM = 'OFF' ]; then export CMAKE_OPTS="${CMAKE_OPTS} -DDRAY_DIR=IGNORE"; fi
if [ $ENABLE_VTKH = 'OFF' ]; then export CMAKE_OPTS="${CMAKE_OPTS} -DVTKH_DIR=IGNORE"; fi
if [ $ENABLE_VTKH = 'OFF' ]; then export CMAKE_OPTS="${CMAKE_OPTS} -DVTKM_DIR=IGNORE"; fi
if [ $ENABLE_ADIOS2 = 'OFF' ]; then export CMAKE_OPTS="${CMAKE_OPTS} -DADIOS2_DIR=IGNORE"; fi
if [ $ENABLE_FIDES = 'OFF' ]; then export CMAKE_OPTS="${CMAKE_OPTS} -DFIDES_DIR=IGNORE"; fi
export CMAKE_OPTS="${CMAKE_OPTS} -DENABLE_BABELFLOW=$ENABLE_BABELFLOW"
echo ${CMAKE_OPTS}
# configure
cmake ${CMAKE_OPTS} ../src
displayName: 'Configure with CMake'
- script: |
#################################
# build
#################################
# build
cd build
make VERBOSE=1
displayName: 'Build'
- script: |
#################################
# test
#################################
# find spack installed cmake
export ROOT_DIR=`pwd`
export CMAKE_BIN_DIR=`ls -d /uberenv_libs/spack/opt/spack/*/*/cmake*/bin`
export PATH=${CMAKE_BIN_DIR}:$PATH
which ctest
cd build
# run ctest
ctest -T test --output-on-failure -V
displayName: 'Run Unit Tests'
- script: |
#################################
# gen img diff report
#################################
# run cmake target to gen report
cd build
make gen_report
displayName: 'Run Gen Test Image Diff Report'
condition: eq(variables['ENABLE_VTKH'], 'ON')
- task: PublishTestResults@2
inputs:
testResultsFormat: 'cTest'
testResultsFiles: '**/Test.xml'
displayName: 'Unit Test Results'
condition: always()
- task: CopyFiles@2
inputs:
contents: 'build/tests/_output/**'
targetFolder: $(Build.ArtifactStagingDirectory)
condition: always()
- task: PublishBuildArtifacts@1
inputs:
pathToPublish: $(Build.ArtifactStagingDirectory)
artifactName: $(Build.DefinitionName)_$(Agent.JobName)
condition: always()
- script: |
#################################
# install
#################################
cd build
make install
displayName: 'Install'
- script: |
###########################
# using with cmake example
###########################
pwd
ls -l
# find spack installed cmake
export ROOT_DIR=`pwd`
export CMAKE_BIN_DIR=`ls -d /uberenv_libs/spack/opt/spack/*/*/cmake*/bin`
export PATH=${CMAKE_BIN_DIR}:$PATH
echo $PATH
which cmake
# use mpi wrappers in case we are built against mfem that
# that requires mpi
export CC=/usr/bin/mpicc
export CXX=/usr/bin/mpicxx
cd install/examples/ascent/using-with-cmake
mkdir _test_build
cd _test_build
cmake ../
make VERBOSE=1
./ascent_render_example
displayName: 'Test vs Install (using-with-cmake)'
condition: eq(variables['ENABLE_VTKH'], 'ON')
- script: |
###########################
# using with make example
###########################
cat install/share/ascent/ascent_config.mk
pwd
ls -l
cd install/examples/ascent/using-with-make
make
./ascent_render_example
displayName: 'Test vs Install (using-with-make)'
condition: eq(variables['ENABLE_VTKH'], 'ON')
- job: Main_Ubuntu_Cuda
pool:
vmImage: 'ubuntu-latest'
timeoutInMinutes: 0
variables:
COMPILER_CC: gcc
COMPILER_CXX: g++
COMPILER_FC: gfortran
strategy:
matrix:
cuda-10-static:
containerImage: ${{ variables.ubuntu_18_cuda_tag }}
BUILD_SHARED_LIBS: OFF
CMAKE_BUILD_TYPE: Release
ENABLE_BABELFLOW: OFF
# static linking unit tests eats up alot of disk space,
# so skip building tests in CI to keep us away from clif
ENABLE_TESTS: OFF
cuda-11.4.0-static:
containerImage: ${{ variables.ubuntu_18_cuda_11_4_0_tag }}
BUILD_SHARED_LIBS: OFF
CMAKE_BUILD_TYPE: Release
ENABLE_BABELFLOW: OFF
# static linking unit tests eats up alot of disk space,
# so skip building tests in CI to keep us away from clif
ENABLE_TESTS: OFF
container: $[ variables['containerImage'] ]
steps:
- checkout: self
clean: boolean
submodules: recursive
- script: |
#################################
# configure
#################################
# setup compiler env vars
export CC=${COMPILER_CC}
export CXX=${COMPILER_CXX}
export FC=${COMPILER_FC}
${CC} --version
# capture current path
export ROOT_DIR=`pwd`
# find spack generated host config file
export HOST_CONFIG=`ls /uberenv_libs/*.cmake`
echo $HOST_CONFIG
# find spack installed cmake
export CMAKE_BIN_DIR=`ls -d /uberenv_libs/spack/opt/spack/*/*/cmake*/bin`
export PATH=${CMAKE_BIN_DIR}:$PATH
echo $PATH
which cmake
cmake --version
# prepare build dir
mkdir build
cd build
# setup cmake options
export CMAKE_OPTS="-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}"
export CMAKE_OPTS="${CMAKE_OPTS} -DBUILD_SHARED_LIBS=${BUILD_SHARED_LIBS}"
export CMAKE_OPTS="${CMAKE_OPTS} -DENABLE_TESTS=$ENABLE_TESTS"
export CMAKE_OPTS="${CMAKE_OPTS} -DENABLE_BABELFLOW=$ENABLE_BABELFLOW"
export CMAKE_OPTS="${CMAKE_OPTS} -DCMAKE_INSTALL_PREFIX=../install"
# configure
cmake ${CMAKE_OPTS} -C ${HOST_CONFIG} ../src
displayName: 'Configure with CMake'
- script: |
#################################
# build
#################################
# build
cd build
make VERBOSE=1
displayName: 'Build'
- script: |
#################################
# install
#################################
cd build
make install
displayName: 'Install'
- script: |
###########################
# using with cmake example
###########################
pwd
ls -l
# find spack installed cmake
export ROOT_DIR=`pwd`
export CMAKE_BIN_DIR=`ls -d /uberenv_libs/spack/opt/spack/*/*/cmake*/bin`
export PATH=${CMAKE_BIN_DIR}:$PATH
echo $PATH
which cmake
cd install/examples/ascent/using-with-cmake
mkdir _test_build
cd _test_build
cmake ../
make VERBOSE=1
displayName: 'Test vs Install (using-with-cmake) [build only]'
- script: |
###########################
# using with make example
###########################
cat install/share/ascent/ascent_config.mk
pwd
ls -l
cd install/examples/ascent/using-with-make
make
displayName: 'Test vs Install (using-with-make) [build only]'