forked from laristra/flecsi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
836 lines (751 loc) · 17.7 KB
/
.gitlab-ci.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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
###################
# Global Settings #
###################
stages:
- Env
- Canary
- Build
- Test
- Tutorials
- Apps
variables:
GET_SOURCES_ATTEMPTS: 10
ARTIFACT_DOWNLOAD_ATTEMPTS: 10
RESTORE_CACHE_ATTEMPTS: 10
GIT_STRATEGY: fetch
GLOBAL_CI_VARIABLE: "global_ci_value"
CI_JOB_NAME_TMP: ${CI_JOB_NAME}
CI_JOB_NAME_NOSTAGE: ${CI_JOB_NAME_TMP#*:}
#CI_DEBUG_TRACE: "true"
http_proxy: "http://proxyout.lanl.gov:8080"
https_proxy: "http://proxyout.lanl.gov:8080"
ftp_proxy: "http://proxyout.lanl.gov:8080"
no_proxy: "lanl.gov"
SPACK_ROOT: /home/gitlab-runner/ci-spack/spack
DEPS_LOCK: /home/gitlab-runner/ci-spack/deps.pid
lock_fd: 314
GIT_SUBMODULE_STRATEGY: recursive
CCACHE_DIR: "${CI_PROJECT_DIR}/ccache"
CCACHE_UMASK: 000
DISTRO: "centOS"
RUNTIME: "mpi"
BUILD_TYPE: "Debug"
MPI_PACKAGE: ""
CC: "gcc"
CXX: "g++"
CXXFLAGS: "-Werror -Wno-deprecated-declarations"
IGNORE_NOCI: "FALSE"
before_script:
- echo ${CI_JOB_NAME_NOSTAGE%.*}-${CI_COMMIT_REF_SLUG}
- '[ "$(git rev-parse origin/$CI_COMMIT_REF_NAME)" != "$CI_COMMIT_SHA" ] && curl --header "PRIVATE-TOKEN: $MY_CI_API_TOKEN" -X POST https://gitlab.com/api/v4/projects/$CI_PROJECT_ID/pipelines/$CI_PIPELINE_ID/cancel'
#- find . -name "`basename cinch`" | grep "cinch\$" | xargs rm -fr
- module load python/3.5.1
- module load cmake/3.12.4
- module load intel/19.0.2
- module load clang/7.0.0
- module unload gcc
- module load gcc/7.3.0
- source ${SPACK_ROOT}/share/spack/setup-env.sh || /bin/true
- spack load -r flecsi-deps%gcc@7.3.0 ~graphviz ^${MPI_PACKAGE} || /bin/true
- module list
##########################
# Build Matrix Variables #
##########################
.runtime_mpi: &runtime_mpi
RUNTIME: "mpi"
.runtime_legion: &runtime_legion
RUNTIME: "legion"
.runtime_hpx: &runtime_hpx
RUNTIME: "hpx"
.compiler_gcc: &compiler_gcc
CC: "gcc"
CXX: "g++"
.compiler_clang: &compiler_clang
CC: "clang"
CXX: "clang++"
.compiler_intel: &compiler_intel
CC: "icc"
CXX: "icpc"
.buildtype_debug: &buildtype_debug
BUILD_TYPE: "Debug"
.buildtype_release: &buildtype_release
BUILD_TYPE: "Release"
.openmpi: &openmpi
MPI_PACKAGE: "openmpi"
.mpich: &mpich
MPI_PACKAGE: "mpich"
.ignore_noci: &ignore_noci
IGNORE_NOCI: "TRUE"
#######################
# Templates & Anchors #
#######################
.general_template: &general_def
retry: 2
.cache_template: &cache_def
cache:
#key: ${CI_JOB_NAME_NOSTAGE%.*}-${CI_COMMIT_REF_SLUG}
#key: ${CI_COMMIT_REF_SLUG}
key: ${DISTRO}-${RUNTIME}-${CC}
paths:
- ccache/
.artifacts_template: &artifacts_def
artifacts:
name: "${CI_COMMIT_REF_SLUG}-${CI_JOB_NAME}"
paths:
- ${CI_PROJECT_DIR}/build #/builds/next-generation-codes/laristra/flecsi/build
when: always
dependencies: []
.shell_template: &shell_def
tags: &shell_tags
- shell
.batch_template: &batch_def
tags: &batch_tags
- darwin-slurm
.job_template: &job_def
<<: *general_def
<<: *cache_def
#############
# Env Stage #
#############
.env_template: &env_def
<<: *job_def
stage: Env
script: &env_script
- mkdir -p build
- cd ${CI_PROJECT_DIR}/build/
- |
if [[ ${I_WANT_TO_CLEAN_UP} ]];
then
rm -rf ${SPACK_ROOT}/*;
fi
- |
( flock -s 200
if [[ ! -d ${SPACK_ROOT} ]];
then
git init --shared=group ${SPACK_ROOT};
git -c ${SPACK_ROOT} pull https://github.com/spack/spack develop;
fi;
source ${SPACK_ROOT}/share/spack/setup-env.sh
spack repo rm laristra_flecsi || /bin/true ;
spack repo add ${CI_PROJECT_DIR}/spack-repo;
spack repo list;
spack install flecsi-deps%gcc@7.3.0 ~graphviz backend=legion ^openmpi;
spack install flecsi-deps%gcc@7.3.0 ~graphviz backend=legion ^mpich;
) 200>${DEPS_LOCK}
###############
# Build Stage #
###############
.build: &build_def
<<: *job_def
<<: *artifacts_def
stage: Build
script: &build_script |-
echo 'Start building'
ccache -z
nproc
# git submodule init
# git config submodule.cinch.url https://github.com/laristra/cinch.git
# git submodule update --init --recursive
mkdir -p ${CI_PROJECT_DIR}/build
mkdir -p ${CI_PROJECT_DIR}/build/install
cd ${CI_PROJECT_DIR}/build/
cmake -DCMAKE_INSTALL_PREFIX=${CI_PROJECT_DIR}/build/install \
-DCMAKE_BUILD_TYPE=$BUILD_TYPE \
-DFLECSI_RUNTIME_MODEL=$RUNTIME \
${MINIMAL:+-DCMAKE_DISABLE_FIND_PACKAGE_METIS=ON} \
-DFLECSI_ENABLE_TUTORIAL=$([ "$RUNTIME" = "hpx" ] && echo OFF || echo ON) \
-DENABLE_UNIT_TESTS=ON \
-DENABLE_PARMETIS=ON \
-DENABLE_COLORING=ON \
-DENABLE_DOXYGEN=OFF \
-DENABLE_FLECSTAN=$([ "$CI_RUNNER_TAGS" = "shell" ] && echo OFF || echo ON) \
-DENABLE_DOCUMENTATION=OFF \
-DENABLE_COVERAGE_BUILD=ON \
..
make -k VERBOSE=1 -j2 -l80
make install DESTDIR=${CI_PROJECT_DIR}/build/install
make install
ccache -s
##############
# Test Stage #
##############
.test: &test_def
<<: *job_def
stage: Test
dependencies:
#- "build:${CI_JOB_NAME#*:}"
- .build_template
script: &test_script |-
echo 'Start testing'
cd ${CI_PROJECT_DIR}/build/
make test || make test ARGS="-V"
gcovr .
################
# Format Stage #
################
.format: &format_def
<<: *job_def
stage: Format
dependencies:
#- "build:${CI_JOB_NAME#*:}"
- .build_template
script: &format_script |-
echo 'Start format checking'
cd ${CI_PROJECT_DIR}/build/
clang-format -version
make format && git diff --exit-code --ignore-submodules
###################
# Tutorials Stage #
###################
.tutorials: &tutorials_def
<<: *job_def
stage: Tutorials
dependencies:
#- "build:${CI_JOB_NAME#*:}"
- .build_template
script: &tutorials_script
- echo 'Start tutorials checking'
- cd ${CI_PROJECT_DIR}
- source ${CI_PROJECT_DIR}/build/install/bin/flecsi-tutorial.sh
- cd flecsi-tutorial
# Tutorial 00-driver
- cd 00-driver
- flecsit compile driver.cc
- ./driver
# Tutorial 01-tasks
- cd ../01-tasks
- flecsit compile tasks.cc
- ./tasks
##############
# Apps Stage #
##############
.apps: &apps_def
<<: *job_def
stage: Apps
dependencies:
#- "build:${CI_JOB_NAME#*:}"
- .build_template
script: &apps_script
- echo 'Start apps checking'
- cd ${CI_PROJECT_DIR}
- git clone --recursive https://github.com/laristra/flecsale.git
- cd flecsale/flecsi
- git fetch
- git checkout ${CI_COMMIT_REF_NAME}
- git submodule update --init --recursive
- cd ../
- mkdir -p build
- cd build
- pwd
- |-
cmake -DCMAKE_BUILD_TYPE=${BUILD_TYPE} \
-DFLECSI_RUNTIME_MODEL=${RUNTIME} \
-DENABLE_UNIT_TESTS=ON \
..
- make -j2 || make VERBOSE=1
- make test ARGS="CTEST_OUTPUT_ON_FAILURE=1"
################
# Canary Stage #
################
.canary: &canary_def
<<: *job_def
stage: Canary
script:
- *build_script
- *test_script
- *format_script
############
# Env Jobs #
############
env:
extends: .env_template
<<: *shell_def
###############
# Canary Jobs #
###############
canary:centOS_mpi:
extends: .canary
<<: *shell_def
variables:
<<: *runtime_mpi
<<: *mpich
canary:centOS_legion:
extends: .canary
<<: *shell_def
variables:
<<: *runtime_legion
<<: *mpich
canary:centOS_hpx:
extends: .canary
<<: *shell_def
variables:
<<: *runtime_hpx
<<: *mpich
allow_failure: true
##############
# Build Jobs #
##############
build:centOS_mpi:
extends: .build
<<: *shell_def
variables:
<<: *runtime_mpi
<<: *buildtype_debug
<<: *compiler_gcc
<<: *openmpi
script:
- *build_script
- *test_script
build:centOS_mpi_release:
extends: build:centOS_mpi
variables:
<<: *buildtype_release
build:centOS_mpi_clang:
extends: build:centOS_mpi
variables:
<<: *compiler_clang
build:centOS_mpi_clang_release:
extends: build:centOS_mpi_clang
variables:
<<: *buildtype_release
build:centOS_mpi_intel:
extends: build:centOS_mpi
variables:
<<: *compiler_intel
build:centOS_mpi_intel_release:
extends: build:centOS_mpi_intel
variables:
<<: *buildtype_release
build:centOS_mpich_mpi:
extends: .build
<<: *shell_def
variables:
<<: *runtime_mpi
<<: *buildtype_debug
<<: *compiler_gcc
<<: *mpich
script:
- *build_script
- *test_script
build:centOS_mpich_mpi_release:
extends: build:centOS_mpich_mpi
variables:
<<: *buildtype_release
build:centOS_mpich_mpi_clang:
extends: build:centOS_mpich_mpi
variables:
<<: *compiler_clang
build:centOS_mpich_mpi_clang_release:
extends: build:centOS_mpich_mpi_clang
variables:
<<: *buildtype_release
build:centOS_mpich_mpi_intel:
extends: build:centOS_mpich_mpi
variables:
<<: *compiler_intel
build:centOS_mpich_mpi_intel_release:
extends: build:centOS_mpich_mpi_intel
variables:
<<: *buildtype_release
build:centOS_legion:
extends: .build
<<: *shell_def
variables:
<<: *runtime_legion
<<: *buildtype_debug
<<: *compiler_gcc
<<: *openmpi
script:
- *build_script
- *test_script
build:centOS_legion_release:
extends: build:centOS_legion
variables:
<<: *buildtype_release
build:centOS_legion_clang:
extends: build:centOS_legion
variables:
<<: *compiler_clang
build:centOS_legion_clang_release:
extends: build:centOS_legion_clang
variables:
<<: *buildtype_release
build:centOS_legion_intel:
extends: build:centOS_legion
variables:
<<: *compiler_intel
build:centOS_legion_intel_release:
extends: build:centOS_legion_intel
variables:
<<: *buildtype_release
build:centOS_mpich_legion:
extends: .build
<<: *shell_def
variables:
<<: *runtime_legion
<<: *buildtype_debug
<<: *compiler_gcc
<<: *mpich
script:
- *build_script
- *test_script
build:centOS_mpich_legion_release:
extends: build:centOS_mpich_legion
variables:
<<: *buildtype_release
build:centOS_mpich_legion_clang:
extends: build:centOS_mpich_legion
variables:
<<: *compiler_clang
build:centOS_mpich_legion_clang_release:
extends: build:centOS_mpich_legion_clang
variables:
<<: *buildtype_release
build:centOS_mpich_legion_intel:
extends: build:centOS_mpich_legion
variables:
<<: *compiler_intel
build:centOS_mpich_legion_intel_release:
extends: build:centOS_mpich_legion_intel
variables:
<<: *buildtype_release
build:centOS_hpx:
extends: .build
<<: *shell_def
variables:
<<: *runtime_hpx
<<: *buildtype_debug
<<: *compiler_gcc
<<: *openmpi
script:
- *build_script
- *test_script
allow_failure: true
build:centOS_mpich_hpx_clang:
extends: build:centOS_hpx
variables:
<<: *compiler_clang
<<: *mpich
build:centOS_hpx_intel_release:
extends: build:centOS_hpx
variables:
<<: *buildtype_release
<<: *compiler_intel
build:centOS_mpi.ignoreNoCI:
extends: build:centOS_mpi
variables:
<<: *ignore_noci
allow_failure: true
build:centOS_legion.ignoreNoCI:
extends: build:centOS_legion
variables:
<<: *ignore_noci
allow_failure: true
build:centOS_hpx.ignoreNoCI:
extends: build:centOS_hpx
variables:
<<: *ignore_noci
allow_failure: true
#############
# Test Jobs #
#############
#test:centOS_mpi:
# extends: .test
# <<: *shell_def
# variables:
# <<: *runtime_mpi
# <<: *buildtype_debug
# <<: *compiler_gcc
# <<: *openmpi
# script:
# - *test_script
# dependencies:
# - build:centOS_mpi
#
#test:centOS_mpi_release:
# extends: test:centOS_mpi
# variables:
# <<: *buildtype_release
# dependencies:
# - build:centOS_mpi_release
#
#test:centOS_mpi_clang:
# extends: test:centOS_mpi
# variables:
# <<: *compiler_clang
# dependencies:
# - build:centOS_mpi_clang
#
#test:centOS_mpi_clang_release:
# extends: test:centOS_mpi_clang
# variables:
# <<: *buildtype_release
# dependencies:
# - build:centOS_mpi_clang_release
#
#test:centOS_mpi_intel:
# extends: test:centOS_mpi
# variables:
# <<: *compiler_intel
# dependencies:
# - build:centOS_mpi_intel
#
#test:centOS_mpi_intel_release:
# extends: test:centOS_mpi_intel
# variables:
# <<: *buildtype_release
# dependencies:
# - build:centOS_mpi_intel_release
#
#test:centOS_mpich_mpi:
# extends: .test
# <<: *shell_def
# variables:
# <<: *runtime_mpi
# <<: *buildtype_debug
# <<: *compiler_gcc
# <<: *mpich
# script:
# - *test_script
# dependencies:
# - build:centOS_mpich_mpi
#
#test:centOS_mpich_mpi_release:
# extends: test:centOS_mpich_mpi
# variables:
# <<: *buildtype_release
# dependencies:
# - build:centOS_mpich_mpi_release
#
#test:centOS_mpich_mpi_clang:
# extends: test:centOS_mpich_mpi
# variables:
# <<: *compiler_clang
# dependencies:
# - build:centOS_mpich_mpi_clang
#
#test:centOS_mpich_mpi_clang_release:
# extends: test:centOS_mpich_mpi_clang
# variables:
# <<: *buildtype_release
# dependencies:
# - build:centOS_mpich_mpi_clang_release
#
#test:centOS_mpich_mpi_intel:
# extends: test:centOS_mpich_mpi
# variables:
# <<: *compiler_intel
# dependencies:
# - build:centOS_mpich_mpi_intel
#
#test:centOS_mpich_mpi_intel_release:
# extends: test:centOS_mpich_mpi_intel
# variables:
# <<: *buildtype_release
# dependencies:
# - build:centOS_mpich_mpi_intel_release
#
#test:centOS_legion:
# extends: .test
# <<: *shell_def
# variables:
# <<: *runtime_legion
# <<: *buildtype_debug
# <<: *compiler_gcc
# <<: *openmpi
# allow_failure: true
# script:
# - *test_script
# dependencies:
# - build:centOS_legion
#
#test:centOS_legion_release:
# extends: test:centOS_legion
# variables:
# <<: *buildtype_release
# dependencies:
# - build:centOS_legion_release
#
#test:centOS_legion_clang:
# extends: test:centOS_legion
# variables:
# <<: *compiler_clang
# dependencies:
# - build:centOS_legion_clang
#
#test:centOS_legion_clang_release:
# extends: test:centOS_legion_clang
# variables:
# <<: *buildtype_release
# dependencies:
# - build:centOS_legion_clang_release
#
#test:centOS_legion_intel:
# extends: test:centOS_legion
# variables:
# <<: *compiler_intel
# dependencies:
# - build:centOS_legion_intel
#
#test:centOS_legion_intel_release:
# extends: test:centOS_legion_intel
# variables:
# <<: *buildtype_release
# dependencies:
# - build:centOS_legion_intel_release
#
#test:centOS_mpich_legion:
# extends: .test
# <<: *shell_def
# variables:
# <<: *runtime_legion
# <<: *buildtype_debug
# <<: *compiler_gcc
# <<: *mpich
# allow_failure: true
# script:
# - *test_script
# dependencies:
# - build:centOS_mpich_legion
#
#test:centOS_mpich_legion_release:
# extends: test:centOS_mpich_legion
# variables:
# <<: *buildtype_release
# dependencies:
# - build:centOS_mpich_legion_release
#
#test:centOS_mpich_legion_clang:
# extends: test:centOS_mpich_legion
# variables:
# <<: *compiler_clang
# dependencies:
# - build:centOS_mpich_legion_clang
#
#test:centOS_mpich_legion_clang_release:
# extends: test:centOS_mpich_legion_clang
# variables:
# <<: *buildtype_release
# dependencies:
# - build:centOS_mpich_legion_clang_release
#
#test:centOS_mpich_legion_intel:
# extends: test:centOS_mpich_legion
# variables:
# <<: *compiler_intel
# dependencies:
# - build:centOS_mpich_legion_intel
#
#test:centOS_mpich_legion_intel_release:
# extends: test:centOS_mpich_legion_intel
# variables:
# <<: *buildtype_release
# dependencies:
# - build:centOS_mpich_legion_intel_release
#
#test:centOS_hpx:
# extends: .test
# <<: *shell_def
# variables:
# <<: *runtime_hpx
# <<: *buildtype_debug
# <<: *compiler_gcc
# <<: *openmpi
# script:
# - *test_script
# dependencies:
# - build:centOS_hpx
# allow_failure: true
#
#test:centOS_mpich_hpx_clang:
# extends: test:centOS_hpx
# variables:
# <<: *compiler_clang
# <<: *mpich
# dependencies:
# - build:centOS_mpich_hpx_clang
#
#test:centOS_hpx_intel_release:
# extends: test:centOS_hpx
# variables:
# <<: *buildtype_release
# <<: *compiler_intel
# dependencies:
# - build:centOS_hpx_intel_release
#
#test:centOS_mpi.ignoreNoCI:
# extends: test:centOS_mpi
# variables:
# <<: *ignore_noci
# dependencies:
# - build:centOS_mpi
# allow_failure: true
#
#test:centOS_legion.ignoreNoCI:
# extends: test:centOS_legion
# variables:
# <<: *ignore_noci
# dependencies:
# - build:centOS_legion
# allow_failure: true
#
#test:centOS_hpx.ignoreNoCI:
# extends: test:centOS_hpx
# variables:
# <<: *ignore_noci
# dependencies:
# - build:centOS_hpx
# allow_failure: true
##################
# Tutorials Jobs #
##################
tutorials:centOS_mpi:
extends: .tutorials
<<: *shell_def
variables:
<<: *runtime_mpi
<<: *buildtype_debug
<<: *compiler_gcc
<<: *openmpi
allow_failure: true
dependencies:
- build:centOS_mpi
tutorials:centOS_legion:
extends: .tutorials
<<: *shell_def
variables:
<<: *runtime_legion
<<: *buildtype_debug
<<: *compiler_gcc
<<: *openmpi
allow_failure: true
dependencies:
- build:centOS_legion
#############
# Apps Jobs #
#############
apps:centOS_mpi:
extends: .apps
<<: *shell_def
variables:
<<: *runtime_mpi
<<: *buildtype_debug
<<: *compiler_gcc
<<: *openmpi
allow_failure: true
dependencies:
- build:centOS_mpi
apps:centOS_legion:
extends: .apps
<<: *shell_def
variables:
<<: *runtime_legion
<<: *buildtype_debug
<<: *compiler_gcc
<<: *openmpi
allow_failure: true
dependencies:
- build:centOS_legion
#######################################################################################
#######################################################################################
#######################################################################################