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:
5353
5454script :
5555 - echo $BUILD_SCRIPT
56- - echo $BUILD_SCRIPT | bash -
56+ - bash <<< $BUILD_SCRIPT
5757
5858after_success :
5959 - 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
6161 - git config --global user.name "TRAVIS-CI-for-$(git --no-pager show -s --format='%cn' $TRAVIS_COMMIT)"
6262 - git config --global user.email "$(git --no-pager show -s --format='%ce' $TRAVIS_COMMIT)"
6363 - ./deploy.sh # handles updating documentation for master branch as well as tags
Original file line number Diff line number Diff line change 237237if [[ $CODE_COVERAGE == [yY]* ]]; then
238238 echo " Trying to compile with code coverage instrumentation."
239239 COVERAGE=" -coverage"
240+ FCOMPILERFLAGS+=' -O0'
240241fi
241242
242243if [[ $CODE_PROFILE == [yY]* ]]; then
You can’t perform that action at this time.
0 commit comments