X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0fe5e08a172fa3189f51d8cf2a4564e5b3bafce5..dce51a171761c0f221ee10beecf3f9ead9bbb627:/tools/jenkins/Flags.sh?ds=sidebyside diff --git a/tools/jenkins/Flags.sh b/tools/jenkins/Flags.sh index 128fcc4cc0..35f5bc4ecc 100755 --- a/tools/jenkins/Flags.sh +++ b/tools/jenkins/Flags.sh @@ -1,15 +1,7 @@ -#!/bin/sh +#!/usr/bin/env sh set -e -if [ $# -lt 4 ] - then - echo "Needs 4 arguments : JAVA MC SMPI DEBUG" - exit -1 -fi - - - die() { echo "$@" exit 1 @@ -34,6 +26,8 @@ onoff() { fi } +[ $# -eq 4 ] || die "Needs 4 arguments : JAVA MC SMPI DEBUG" + ### Cleanup previous runs ! [ -z "$WORKSPACE" ] || die "No WORKSPACE" @@ -53,35 +47,35 @@ cd $WORKSPACE/build #we can't just receive ON or OFF as values as display is bad in the resulting jenkins matrix if [ $1 = "JAVA" ] -then +then buildjava="ON" else buildjava="OFF" fi if [ $2 = "MC" ] -then +then buildmc="ON" else buildmc="OFF" fi if [ $3 = "SMPI" ] -then +then buildsmpi="ON" else buildsmpi="OFF" fi if [ $4 = "DEBUG" ] -then +then builddebug="ON" else builddebug="OFF" fi -echo "Step ${STEP}/${NSTEPS} - Building with java=${buildjava}, debug=${builddebug}, SMPI=${buildsmpi}, MC=${buildmc}" +echo "Step ${STEP}/${NSTEPS} - Building with java=${buildjava}, debug=${builddebug}, SMPI=${buildsmpi}, MC=${buildmc}" cmake -Denable_documentation=OFF -Denable_lua=ON -Denable_java=${buildjava} \ -Denable_compile_optimizations=OFF -Denable_compile_warnings=ON \ -Denable_jedule=ON -Denable_mallocators=ON -Denable_debug=${builddebug} \ @@ -89,7 +83,7 @@ cmake -Denable_documentation=OFF -Denable_lua=ON -Denable_java=${buildjava} \ -Denable_memcheck=OFF -Denable_memcheck_xml=OFF -Denable_smpi_ISP_testsuite=OFF \ -Denable_ns3=$(onoff test "$buildmc" != "ON") -Denable_coverage=OFF $WORKSPACE -make -j$NUMPROC +make -j$NUMPROC tests make clean