mirror of https://github.com/CGAL/cgal
Remove `-x` from the .travis.yml file: move it in build_package.sh
This commit is contained in:
parent
748363cc2e
commit
c4fb5f995c
|
|
@ -68,7 +68,7 @@ before_script:
|
||||||
- cd ..
|
- cd ..
|
||||||
script:
|
script:
|
||||||
- cd ./.travis
|
- cd ./.travis
|
||||||
- if [ -n "$CGAL_DEBUG_TRAVIS" ]; then bash -x -e ./build_package.sh $PACKAGE; else bash -e ./build_package.sh $PACKAGE; fi
|
- bash ./build_package.sh $PACKAGE
|
||||||
notifications:
|
notifications:
|
||||||
email:
|
email:
|
||||||
on_success: change # default: always
|
on_success: change # default: always
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
|
[ -n "$CGAL_DEBUG_TRAVIS" ] && set -x
|
||||||
|
|
||||||
CXX_FLAGS="-DCGAL_NDEBUG"
|
CXX_FLAGS="-DCGAL_NDEBUG"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ before_script:
|
||||||
- cd ..
|
- cd ..
|
||||||
script:
|
script:
|
||||||
- cd ./.travis
|
- cd ./.travis
|
||||||
- if [ -n "$CGAL_DEBUG_TRAVIS" ]; then bash -x -e ./build_package.sh $PACKAGE; else bash -e ./build_package.sh $PACKAGE; fi
|
- bash ./build_package.sh $PACKAGE
|
||||||
notifications:
|
notifications:
|
||||||
email:
|
email:
|
||||||
on_success: change # default: always
|
on_success: change # default: always
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue