mirror of https://github.com/CGAL/cgal
Make the -x option conditionnal for all travis scripts.
This commit is contained in:
parent
c45d2fa1e7
commit
5bb6622eab
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -x
|
[ -n "$CGAL_DEBUG_TRAVIS" ] && set -x
|
||||||
DONE=0
|
DONE=0
|
||||||
while [ $DONE = 0 ]
|
while [ $DONE = 0 ]
|
||||||
do
|
do
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ before_script:
|
||||||
- cd ..
|
- cd ..
|
||||||
script:
|
script:
|
||||||
- cd ./.travis
|
- cd ./.travis
|
||||||
- bash -x -e ./build_package.sh $PACKAGE
|
- if [ -n "$CGAL_DEBUG_TRAVIS" ]; then bash -x -e ./build_package.sh $PACKAGE; else bash -e ./build_package.sh $PACKAGE; fi
|
||||||
notifications:
|
notifications:
|
||||||
email:
|
email:
|
||||||
on_success: change # default: always
|
on_success: change # default: always
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#This script must be called from the CGAL root.
|
#This script must be called from the CGAL root.
|
||||||
set -e
|
set -e
|
||||||
set -x
|
[ -n "$CGAL_DEBUG_TRAVIS" ] && set -x
|
||||||
while test $# -gt 0
|
while test $# -gt 0
|
||||||
do
|
do
|
||||||
case "$1" in
|
case "$1" in
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue