Skip to content

Commit f9859d6

Browse files
committed
Careful now [skip appveyor]
1 parent 7cfeec8 commit f9859d6

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.circleci/config.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ variables:
1919
run:
2020
name: Set up Python dependencies
2121
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
2227
pip install --user pipenv --upgrade pip
2328
pipenv install --three
2429
report: &report
@@ -31,7 +36,6 @@ variables:
3136
name: Testing
3237
shell: /bin/bash
3338
command: |
34-
source /opt/intel/bin/compilervars.sh -arch intel64 -platform linux
3539
pipenv run python testing/collect_tests.py 'chapter-01/recipe-*' &&
3640
pipenv run python testing/collect_tests.py 'chapter-02/recipe-*' &&
3741
pipenv run python testing/collect_tests.py 'chapter-03/recipe-*' &&
@@ -51,7 +55,6 @@ variables:
5155
name: Testing Conda recipes
5256
shell: /bin/bash
5357
command: |
54-
source /opt/intel/bin/compilervars.sh -arch intel64 -platform linux
5558
pipenv run python testing/collect_tests.py 'chapter-11/recipe-04' &&
5659
pipenv run python testing/collect_tests.py 'chapter-11/recipe-05'
5760

0 commit comments

Comments
 (0)