X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8c1b9e7ef52e21b23818bb0058c1eecfb03f9cc7..4b8be43e2c03939bc780b6112d841d8b839a79bb:/tools/jenkins/build.sh diff --git a/tools/jenkins/build.sh b/tools/jenkins/build.sh index aa72529c2f..1421468644 100755 --- a/tools/jenkins/build.sh +++ b/tools/jenkins/build.sh @@ -88,6 +88,9 @@ fi mkdir $WORKSPACE/build cd $WORKSPACE/build +# This is for Windows: +PATH="$WORKSPACE/build/lib:$PATH" + if test "$(uname -o)" != "Msys"; then echo "XX" echo "XX Build the archive out of the tree" @@ -100,9 +103,12 @@ if test "$(uname -o)" != "Msys"; then echo "XX" echo "XX Open the resulting archive" echo "XX" - tar xzf `cat VERSION`.tar.gz + gunzip `cat VERSION`.tar.gz + tar xf `cat VERSION`.tar cd `cat VERSION` - SRCFOLDER="." + mkdir build + cd build + SRCFOLDER=".." else #for windows we don't make dist, but we still want to build out of source SRCFOLDER=$WORKSPACE @@ -128,7 +134,7 @@ make -j$NUMBER_OF_PROCESSORS VERBOSE=1 if test "$(uname -o)" != "Msys"; then cd $WORKSPACE/build - cd `cat VERSION` + cd `cat VERSION`/build fi TRES=0