File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,11 @@ variables:
19
19
run :
20
20
name : Set up Python dependencies
21
21
command : |
22
+ cat >> $BASH_ENV <<EOF
23
+ if [[ "$CIRCLECI_COMPILER" == "intel" ]] ; then
24
+ source /opt/intel/bin/compilervars.sh -arch intel64 -platform linux
25
+ fi
26
+ EOF
22
27
pip install --user pipenv --upgrade pip
23
28
pipenv install --three
24
29
report : &report
@@ -31,7 +36,6 @@ variables:
31
36
name : Testing
32
37
shell : /bin/bash
33
38
command : |
34
- source /opt/intel/bin/compilervars.sh -arch intel64 -platform linux
35
39
pipenv run python testing/collect_tests.py 'chapter-01/recipe-*' &&
36
40
pipenv run python testing/collect_tests.py 'chapter-02/recipe-*' &&
37
41
pipenv run python testing/collect_tests.py 'chapter-03/recipe-*' &&
@@ -51,7 +55,6 @@ variables:
51
55
name : Testing Conda recipes
52
56
shell : /bin/bash
53
57
command : |
54
- source /opt/intel/bin/compilervars.sh -arch intel64 -platform linux
55
58
pipenv run python testing/collect_tests.py 'chapter-11/recipe-04' &&
56
59
pipenv run python testing/collect_tests.py 'chapter-11/recipe-05'
57
60
You can’t perform that action at this time.
0 commit comments