Skip to content

Commit 9804e07

Browse files
committed
Fix some superbuild recipes by skipping on PGI
1 parent 7041239 commit 9804e07

File tree

4 files changed

+15
-0
lines changed

4 files changed

+15
-0
lines changed

.circleci/config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@ variables:
44
intel-linux: &intel-linux
55
docker:
66
- image: devcafe/cmake-cookbook_circleci_ubuntu16.04-intel2018.1
7+
name: tsubame
78
user: root
89
environment:
910
CIRCLECI_COMPILER: intel
1011
working_directory: ~/cmake-cookbook
1112
pgi-linux: &pgi-linux
1213
docker:
1314
- image: devcafe/cmake-cookbook_circleci_ubuntu16.04-pgi18.4
15+
name: chabo
1416
user: root
1517
environment:
1618
CIRCLECI_COMPILER: pgi

chapter-08/recipe-02/cxx-example/menu.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ appveyor-msys:
88
definitions:
99
- Boost_FORCE_SUPERBUILD: 'ON'
1010

11+
# Boost build system does not support PGI
12+
circle-pgi:
13+
skip_generators:
14+
- 'Unix Makefiles'
15+
- 'Ninja'
16+
1117
travis-linux:
1218
definitions:
1319
- Boost_FORCE_SUPERBUILD: 'ON'
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Fails to generate imported target for UUID
2+
circle-pgi:
3+
skip_generators:
4+
- 'Unix Makefiles'
5+
- 'Ninja'

testing/menu.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ circle-intel:
2323
- CMAKE_CXX_COMPILER: 'icpc'
2424
- CMAKE_Fortran_COMPILER: 'ifort'
2525
- CMAKE_BUILD_TYPE: 'Debug'
26+
- SITE: 'Circle CI Ubuntu 16.04'
2627
env:
2728
- 'DIE_HARD': 'True'
2829

@@ -32,6 +33,7 @@ circle-pgi:
3233
- CMAKE_CXX_COMPILER: 'pgc++'
3334
- CMAKE_Fortran_COMPILER: 'pgfortran'
3435
- CMAKE_BUILD_TYPE: 'Debug'
36+
- SITE: 'Circle CI Ubuntu 16.04'
3537
env:
3638
- 'DIE_HARD': 'True'
3739

0 commit comments

Comments
 (0)