File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ travis_time_start install # Use this to install any prerequisites or dependencie
47
47
cd ${HOME}
48
48
[ -e jskeus ] || git clone http://github.com/euslisp/jskeus jskeus
49
49
ln -s $CI_SOURCE_PATH jskeus/eus
50
+ ln -s ` pwd` /jskeus/irteus jskeus/eus/irteus
50
51
travis_time_end
51
52
52
53
travis_time_start script.make # All commands must exit with code 0 on success. Anything else is considered failure.
@@ -60,9 +61,9 @@ source bashrc.eus
60
61
export DISPLAY=
61
62
set +e
62
63
if [[ " ` uname -m` " == " arm" * || " ` uname -m` " == " aarch" * ]]; then
63
- export EXIT_STATUS=0; for test_l in irteus/test/* .l; do [[ $test_l =~ geo.l| interpolator.l| irteus-demo.l| test-irt-motion.l| object.l| coords.l ]] && continue ; irteusgl $test_l ; export EXIT_STATUS=` expr $? + 1 ` ; done ; echo " Exit status : $EXIT_STATUS " ; [ $EXIT_STATUS == 0 ]
64
+ export EXIT_STATUS=0; for test_l in irteus/test/* .l; do [[ $test_l =~ geo.l| interpolator.l| irteus-demo.l| test-irt-motion.l| object.l| coords.l ]] && continue ; irteusgl $test_l ; export EXIT_STATUS=` expr $? + $EXIT_STATUS ` ; done ; echo " Exit status : $EXIT_STATUS " ; [ $EXIT_STATUS == 0 ] || exit 1
64
65
else
65
- export EXIT_STATUS=0; for test_l in irteus/test/* .l; do irteusgl $test_l ; export EXIT_STATUS=` expr $? + 1 ` ; done ; echo " Exit status : $EXIT_STATUS " ; [ $EXIT_STATUS == 0 ]
66
+ export EXIT_STATUS=0; for test_l in irteus/test/* .l; do irteusgl $test_l ; export EXIT_STATUS=` expr $? + $EXIT_STATUS ` ; done ; echo " Exit status : $EXIT_STATUS " ; [ $EXIT_STATUS == 0 ] || exit 1
66
67
fi
67
68
travis_time_end
68
69
You can’t perform that action at this time.
0 commit comments