File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -53,11 +53,11 @@ install:
53
53
54
54
script :
55
55
- echo $BUILD_SCRIPT
56
- - echo $BUILD_SCRIPT | bash -
56
+ - bash <<< $BUILD_SCRIPT
57
57
58
58
after_success :
59
59
- cd $TRAVIS_BUILD_DIR
60
- - if [[ $CODE_COVERAGE == [yY]* ]]; then gcov -o lib/ src/json_module.F90 && bash <(curl -s https://codecov.io/bash) ; fi
60
+ - if [[ $CODE_COVERAGE == [yY]* ]]; then bash <(curl -s https://codecov.io/bash) ; fi
61
61
- git config --global user.name "TRAVIS-CI-for-$(git --no-pager show -s --format='%cn' $TRAVIS_COMMIT)"
62
62
- git config --global user.email "$(git --no-pager show -s --format='%ce' $TRAVIS_COMMIT)"
63
63
- ./deploy.sh # handles updating documentation for master branch as well as tags
Original file line number Diff line number Diff line change 237
237
if [[ $CODE_COVERAGE == [yY]* ]]; then
238
238
echo " Trying to compile with code coverage instrumentation."
239
239
COVERAGE=" -coverage"
240
+ FCOMPILERFLAGS+=' -O0'
240
241
fi
241
242
242
243
if [[ $CODE_PROFILE == [yY]* ]]; then
You can’t perform that action at this time.
0 commit comments