X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/be3155e24d0c71e2bbd31dd282cfd49bff7290fa..6b7d69b2ccd294f399874c5c0dbb20b6afe2affd:/tools/jenkins/Flags.sh diff --git a/tools/jenkins/Flags.sh b/tools/jenkins/Flags.sh index 931a1359a6..c07669c2b5 100755 --- a/tools/jenkins/Flags.sh +++ b/tools/jenkins/Flags.sh @@ -1,56 +1,98 @@ -#!/bin/sh +#!/usr/bin/env sh set -e +echo "Starting Flags.sh $*" + die() { echo "$@" exit 1 } +# Get an ON/OFF string from a command: +onoff() { + if "$@" > /dev/null ; then + echo ON + else + echo OFF + fi +} + +[ $# -eq 5 ] || die "Needs 5 arguments : JAVA MC SMPI DEBUG MSG" + +### Cleanup previous runs + +[ -n "$WORKSPACE" ] || die "No WORKSPACE" +[ -d "$WORKSPACE" ] || die "WORKSPACE ($WORKSPACE) does not exist" + do_cleanup() { - for d in "$WORKSPACE/build" + for d do if [ -d "$d" ] then - rm -rf "$d" || die "Could not remote $d" + rm -rf "$d" || die "Could not remove $d" fi + mkdir "$d" || die "Could not create $d" done } -### Cleanup previous runs +do_cleanup "$WORKSPACE/build" -! [ -z "$WORKSPACE" ] || die "No WORKSPACE" -[ -d "$WORKSPACE" ] || die "WORKSPACE ($WORKSPACE) does not exist" +NUMPROC="$(nproc)" || NUMPROC=1 -do_cleanup +cd "$WORKSPACE"/build -for d in "$WORKSPACE/build" -do - mkdir "$d" || die "Could not create $d" -done +#we can't just receive ON or OFF as values as display is bad in the resulting jenkins matrix -NUMPROC="$(nproc)" || NUMPROC=1 +if [ "$1" = "JAVA" ] +then + buildjava="ON" +else + buildjava="OFF" +fi -cd $WORKSPACE/build +if [ "$2" = "MC" ] +then + buildmc="ON" +else + buildmc="OFF" +fi -for buildjava in ON OFF -do - for buildmalloc in ON OFF - do - for buildsmpi in ON OFF - do - for buildmc in ON OFF - do - echo "build with java=${buildjava}, mallocators=${buildmalloc}, 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=${buildmalloc} \ - -Denable_smpi=${buildsmpi} -Denable_smpi_MPICH3_testsuite=${buildsmpi} -Denable_model-checking=${buildmc} \ - -Denable_memcheck=OFF -Denable_memcheck_xml=OFF -Denable_smpi_ISP_testsuite=OFF -Denable_coverage=OFF $WORKSPACE - make -j$NUMPROC - make clean - done - done - done -done +if [ "$3" = "SMPI" ] +then + buildsmpi="ON" +else + buildsmpi="OFF" +fi + +if [ "$4" = "DEBUG" ] +then + builddebug="ON" +else + builddebug="OFF" +fi + +if [ "$5" = "MSG" ] +then + buildmsg="ON" +else + buildmsg="OFF" +fi + +if [ $buildmsg = "OFF" ] && [ $buildjava = "ON" ] +then + echo "Don't even try to build Java without MSG" + exit 0 +fi + +echo "Step ${STEP}/${NSTEPS} - Building with java=${buildjava}, debug=${builddebug}, SMPI=${buildsmpi}, MC=${buildmc}, MSG=${buildmsg}" +cmake -Denable_documentation=OFF -Denable_java=${buildjava} -Denable_msg=${buildmsg} \ + -Denable_compile_optimizations=OFF -Denable_compile_warnings=ON \ + -Denable_mallocators=ON -Denable_debug=${builddebug} \ + -Denable_smpi=${buildsmpi} -Denable_smpi_MPICH3_testsuite=${buildsmpi} -Denable_model-checking=${buildmc} \ + -Denable_memcheck=OFF -Denable_memcheck_xml=OFF -Denable_smpi_ISP_testsuite=OFF \ + -Denable_ns3=$(onoff test "$buildmc" != "ON") -Denable_coverage=OFF -DLTO_EXTRA_FLAG="auto" "$WORKSPACE" +make -j$NUMPROC tests +cd .. +rm -rf build