X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4c337930a1c7dad56c5bb12357207bcc2fdb4281..76b0255fd0d576fa033731ee9c9a2ddcbefb68a1:/buildtools/pipol/Nightly_simgrid.sh diff --git a/buildtools/pipol/Nightly_simgrid.sh b/buildtools/pipol/Nightly_simgrid.sh old mode 100644 new mode 100755 index d7ff52fa9c..a19e890f82 --- a/buildtools/pipol/Nightly_simgrid.sh +++ b/buildtools/pipol/Nightly_simgrid.sh @@ -1,178 +1,116 @@ #!/bin/bash -#PRE-PIPOL /home/mescal/navarro/pre-simgrid.sh +#PRE-PIPOL ~/pre-simgrid.sh - -#PIPOL esn i386-linux-ubuntu-jaunty.dd.gz none 02:00 --user --silent -#PIPOL esn amd64-linux-ubuntu-jaunty.dd.gz none 02:00 --user --silent +#___________________________________________________________________________________________________ +#Ubuntu 9.10________________________________________________________________________________________ #PIPOL esn i386-linux-ubuntu-karmic.dd.gz none 02:00 --user --silent #PIPOL esn amd64-linux-ubuntu-karmic.dd.gz none 02:00 --user --silent + +#Ubuntu 10.04 #PIPOL esn i386-linux-ubuntu-lucid.dd.gz none 02:00 --user --silent -#PIPOL esn amd64-linux-ubuntu-lucid.dd.gz none 02:00 --user --silent +#PIPOL esn amd64-linux-ubuntu-lucid.dd.gz pipol8 05:00 --user --silent + +#Ubuntu 10.10 #PIPOL esn amd64_2010-linux-ubuntu-maverick.dd.gz none 02:00 --user --silent -#PIPOL esn i386-linux-fedora-core11.dd.gz none 02:00 --user --silent -#PIPOL esn amd64-linux-fedora-core11.dd.gz none 02:00 --user --silent +#___________________________________________________________________________________________________ +#Fedora 12__________________________________________________________________________________________ #PIPOL esn i386-linux-fedora-core12.dd.gz none 02:00 --user --silent #PIPOL esn amd64-linux-fedora-core12.dd.gz none 02:00 --user --silent + +#Fedora 13 #PIPOL esn i386-linux-fedora-core13.dd.gz none 02:00 --user --silent #PIPOL esn amd64-linux-fedora-core13.dd.gz none 02:00 --user --silent -#PIPOL esn i386_kvm-linux-debian-lenny none 02:00 --user --silent -#PIPOL esn amd64_kvm-linux-debian-lenny none 02:00 --user --silent -#PIPOL esn i386_kvm-linux-debian-testing none 02:00 --user --silent -#PIPOL esn amd64_kvm-linux-debian-testing none 02:00 --user --silent +#Fedora 14 +#PIPOL esn amd64_2010-linux-fedora-core14.dd.gz none 02:00 --user --silent +#PIPOL esn i386_2010-linux-fedora-core14.dd.gz none 02:00 --user --silent -#PIPOL esn x86_64_mac-mac-osx-server-snow-leopard.dd.gz none 02:00 --user --silent -#PIPOL esn x86_mac-mac-osx-server-snow-leopard.dd.gz none 02:00 --user --silent +#__________________________________________________________________________________________________ +#Debian Lenny 5.0___________________________________________________________________________________ +#PIPOL esn i386-linux-debian-lenny.dd.gz none 02:00 --user --silent +#PIPOL esn amd64-linux-debian-lenny.dd.gz none 02:00 --user --silent -SYSTEM=`uname` +#Debian Lenny 6.0 +#PIPOL esn amd64_2010-linux-debian-squeeze.dd.gz none 02:00 --user --silent + +#Debian Testing +#PIPOL esn i386-linux-debian-testing none 02:00 --user --silent +#PIPOL esn amd64-linux-debian-testing none 02:00 --user --silent + +#___________________________________________________________________________________________________ +#MacOS Snow Leopard 10.6____________________________________________________________________________ if [ -e ./pipol ] ; then - rm -rf ./pipol/$PIPOL_HOST - mkdir ./pipol/$PIPOL_HOST + rm -rf ./pipol/$PIPOL_HOST + mkdir ./pipol/$PIPOL_HOST else - mkdir ./pipol - rm -rf ./pipol/$PIPOL_HOST - mkdir ./pipol/$PIPOL_HOST + mkdir ./pipol + rm -rf ./pipol/$PIPOL_HOST + mkdir ./pipol/$PIPOL_HOST fi cd ./pipol/$PIPOL_HOST -svn checkout svn://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk simgrid-trunk --quiet +export GIT_SSL_NO_VERIFY=1 +git clone git://scm.gforge.inria.fr/simgrid/simgrid.git +cd simgrid +#git checkout v3_7_x -sh ./simgrid-trunk/buildtools/pipol/liste_install.sh -perl ./simgrid-trunk/buildtools/pipol/cmake.pl +perl ./buildtools/pipol/cmake.pl +perl ./buildtools/pipol/ruby.pl -cd simgrid-trunk +if [ -e /usr/bin/gcc-4.6 ] ; then +export CC=gcc-4.6 +export CXX=g++-4.6 +else +export CC=gcc +export CXX=g++ +fi -rm CMakeCache.txt +mkdir build-def +cd build-def +#DEFAULT CONF cmake \ --Denable_lua=on \ --Denable_ruby=on \ --Denable_java=on \ --Denable_tracing=on \ --Denable_smpi=on \ --Denable_lib_static=off \ --Denable_model-checking=off \ --Denable_latency_bound_tracking=off \ --Denable_gtnets=off \ --Denable_compile_optimizations=off \ --Denable_compile_warnings=off \ --Denable_supernovae=off . +-Denable_smpi_MPICH3_testsuite=on .. ctest -D NightlyStart ctest -D NightlyConfigure ctest -D NightlyBuild ctest -D NightlyTest ctest -D NightlySubmit -make clean +cd ../ +rm -rf ./build-def -#full_flags -cmake \ --Denable_lua=on \ --Denable_ruby=on \ --Denable_java=on \ --Denable_tracing=on \ --Denable_smpi=on \ --Denable_compile_optimizations=on \ --Denable_compile_warnings=on \ --Denable_lib_static=off \ --Denable_model-checking=off \ --Denable_latency_bound_tracking=off \ --Denable_gtnets=off \ --Denable_supernovae=off . -ctest -D NightlyStart -ctest -D NightlyConfigure -ctest -D NightlyBuild -ctest -D NightlyTest -ctest -D NightlySubmit -make clean +# really clean the working directory +git reset --hard master +git clean -dfx -#supernovae +#MC cmake \ --Denable_lua=on \ --Denable_ruby=on \ +-Denable_coverage=on \ +-Denable_model-checking=on \ -Denable_java=on \ --Denable_tracing=on \ --Denable_smpi=on \ --Denable_supernovae=on \ --Denable_compile_optimizations=off \ --Denable_compile_warnings=off \ --Denable_lib_static=off \ --Denable_model-checking=off \ --Denable_latency_bound_tracking=off \ --Denable_gtnets=off . +-Denable_lua=on \ +-Denable_compile_optimizations=off . ctest -D NightlyStart ctest -D NightlyConfigure ctest -D NightlyBuild ctest -D NightlyTest +ctest -D NightlyCoverage ctest -D NightlySubmit -make clean -#model checking -cmake \ --Denable_coverage=on \ --Denable_lua=on \ --Denable_ruby=on \ --Denable_java=on \ --Denable_model-checking=on \ --Denable_tracing=on \ --Denable_latency_bound_tracking=on \ --Denable_gtnets=off \ --Denable_compile_optimizations=off \ --Denable_compile_warnings=off \ --Denable_supernovae=off \ --Denable_lib_static=off \ --Denable_smpi=on . +export SIMGRID_ROOT=`pwd` +export LD_LIBRARY_PATH=`pwd`/lib +export DYLD_LIBRARY_PATH=`pwd`/lib #for mac + +cd ../ +git clone git://scm.gforge.inria.fr/simgrid/simgrid-ruby.git simgrid-ruby --quiet +cd simgrid-ruby + +cmake . ctest -D NightlyStart ctest -D NightlyConfigure ctest -D NightlyBuild ctest -D NightlyTest -ctest -D NightlyCoverage ctest -D NightlySubmit -make clean - -if [ $SYSTEM = Linux ] ; then - - sh ./buildtools/pipol/install_gtnets.sh ./gtnets_install - - if [ -e ./gtnets_install/lib/libgtsim-opt.so ] ; then - #gtnets - cmake -Denable_lua=on \ - -Denable_ruby=on \ - -Denable_lib_static=on \ - -Denable_model-checking=off \ - -Denable_tracing=on \ - -Denable_latency_bound_tracking=on \ - -Denable_gtnets=on \ - -Denable_java=on \ - -Dgtnets_path=$userhome/usr \ - -Denable_coverage=off \ - -Denable_smpi=on . - ctest -D NightlyStart - ctest -D NightlyConfigure - ctest -D NightlyBuild - ctest -D NightlyTest - ctest -D NightlySubmit - make clean - fi - - #Make the memcheck mode - cmake -Denable_lua=off \ - -Denable_ruby=off \ - -Denable_lib_static=off \ - -Denable_model-checking=off \ - -Denable_tracing=off \ - -Denable_latency_bound_tracking=off \ - -Denable_coverage=off \ - -Denable_gtnets=off \ - -Denable_java=off \ - -Denable_memcheck=on . - ctest -D NightlyStart - ctest -D NightlyConfigure - ctest -D NightlyBuild - ctest -D NightlyMemCheck - ctest -D NightlySubmit - make clean - -fi \ No newline at end of file