diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-09-10 17:12:49 +0200 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-09-10 17:31:23 +0200 |
commit | c043f68024779a02e15c098322937af98e4cbffd (patch) | |
tree | 9274410e1b775e72c64b7a0ca5652b3333606e0d | |
parent | Added abilty to set build info (diff) | |
download | cuberite-c043f68024779a02e15c098322937af98e4cbffd.tar cuberite-c043f68024779a02e15c098322937af98e4cbffd.tar.gz cuberite-c043f68024779a02e15c098322937af98e4cbffd.tar.bz2 cuberite-c043f68024779a02e15c098322937af98e4cbffd.tar.lz cuberite-c043f68024779a02e15c098322937af98e4cbffd.tar.xz cuberite-c043f68024779a02e15c098322937af98e4cbffd.tar.zst cuberite-c043f68024779a02e15c098322937af98e4cbffd.zip |
Diffstat (limited to '')
-rwxr-xr-x | CIbuild.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CIbuild.sh b/CIbuild.sh index 683c1fc74..df023316e 100755 --- a/CIbuild.sh +++ b/CIbuild.sh @@ -2,6 +2,10 @@ set -e +export BUILD_SERIES_NAME="Travis $CC $TRAVIS_MCSERVER_BUILD_TYPE" +export BUILD_ID=$TRAVIS_JOB_NUMBER +export BUILD_DATETIME=`date` + cmake . -DBUILD_TOOLS=1 -DSELF_TEST=1; make -j 2; make -j 2 test; |