We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff57a6e commit 7cfeec8Copy full SHA for 7cfeec8
.circleci/config.yml
@@ -8,6 +8,13 @@ variables:
8
environment:
9
CIRCLECI_COMPILER: intel
10
working_directory: ~/cmake-cookbook
11
+ pgi-linux: &pgi-linux
12
+ docker:
13
+ - image: devcafe/cmake-cookbook_circleci_ubuntu16.04-pgi17.4
14
+ user: root
15
+ environment:
16
+ CIRCLECI_COMPILER: pgi
17
+ working_directory: ~/cmake-cookbook
18
setup: &setup
19
run:
20
name: Set up Python dependencies
@@ -56,12 +63,20 @@ jobs:
56
63
- *setup
57
64
- *report
58
65
- *tests
66
+ intel-conda:
67
+ <<: *intel-linux
68
+ steps:
69
+ - checkout
70
+ - *setup
71
+ - *report
72
+ - *tests-conda
59
73
60
74
workflows:
61
75
version: 2
62
76
build:
77
jobs:
78
- intel
79
+ - intel-conda
80
81
#jobs:
82
# build:
0 commit comments