1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/xshuai-deeplearning4j

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
runtests.sh 1.2 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
Lukasz Jastrzebski Отправлено 31.01.2017 21:38 97f9075
#!/usr/bin/env bash
# Abort on Error
set -e
export PING_SLEEP=30s
export WORKDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
export BUILD_OUTPUT=$WORKDIR/build.out
touch $BUILD_OUTPUT
dump_output() {
echo Tailing the last 500 lines of output:
tail -500 $BUILD_OUTPUT
}
error_handler() {
echo ERROR: An error was encountered with the build.
dump_output
exit 1
}
# If an error occurs, run our error handler to output a tail of the build
trap 'error_handler' ERR
# Set up a repeating loop to send some output to Travis.
bash -c "while true; do echo \$(date) - building ...; sleep $PING_SLEEP; done" &
PING_LOOP_PID=$!
# My build is using maven, but you could build anything with this, E.g.
# your_build_command_1 >> $BUILD_OUTPUT 2>&1
# your_build_command_2 >> $BUILD_OUTPUT 2>&1
mvn clean test >> $BUILD_OUTPUT 2>&1
# The build finished without returning an error so dump a tail of the output
dump_output
# Repeat for Spark 2
./change-spark-versions.sh 2
mvn clean test -Dspark.major.version=2 >> $BUILD_OUTPUT 2>&1
./change-spark-versions.sh 1
# The build finished without returning an error so dump a tail of the output
dump_output
# nicely terminate the ping output loop
kill $PING_LOOP_PID

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/xshuai-deeplearning4j.git
git@api.gitlife.ru:oschina-mirror/xshuai-deeplearning4j.git
oschina-mirror
xshuai-deeplearning4j
xshuai-deeplearning4j
master