Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
please cmake, could you tell us your compiler arguments?
authorMartin Quinson <martin.quinson@loria.fr>
Sat, 25 Jul 2015 08:50:42 +0000 (10:50 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Sat, 25 Jul 2015 08:50:42 +0000 (10:50 +0200)
buildtools/jenkins/build.sh
buildtools/jenkins/run.sh
buildtools/jenkins/run_DynamicAnalysis.sh

index 7226a67..2341297 100755 (executable)
@@ -34,7 +34,7 @@ mkdir $WORKSPACE/build
 cd $WORKSPACE/build
 
 cmake -Denable_documentation=OFF $WORKSPACE
 cd $WORKSPACE/build
 
 cmake -Denable_documentation=OFF $WORKSPACE
-make dist
+make dist VERBOSE=1
 tar xzf `cat VERSION`.tar.gz
 cd `cat VERSION`
 
 tar xzf `cat VERSION`.tar.gz
 cd `cat VERSION`
 
@@ -63,7 +63,7 @@ cmake -Denable_debug=ON -Denable_documentation=OFF -Denable_coverage=OFF \
   -Denable_compile_warnings=ON -Denable_smpi=ON -Denable_lib_static=OFF \
   -Denable_latency_bound_tracking=OFF -Denable_gtnets=OFF -Denable_jedule=OFF \
   -Denable_tracing=ON -Denable_java=ON
   -Denable_compile_warnings=ON -Denable_smpi=ON -Denable_lib_static=OFF \
   -Denable_latency_bound_tracking=OFF -Denable_gtnets=OFF -Denable_jedule=OFF \
   -Denable_tracing=ON -Denable_java=ON
-make
+make VERBOSE=1
 
 cd $WORKSPACE/build
 cd `cat VERSION`
 
 cd $WORKSPACE/build
 cd `cat VERSION`
index f726799..6d13974 100755 (executable)
@@ -30,14 +30,14 @@ then
 
     cmake -G "MSYS Makefiles" -Denable_documentation=OFF $WORKSPACE || die 1 "Failed to do the first cmake - Halting"
 
 
     cmake -G "MSYS Makefiles" -Denable_documentation=OFF $WORKSPACE || die 1 "Failed to do the first cmake - Halting"
 
-    make dist || die 2 "Failed to build dist - Halting"
+    make dist VERBOSE=1|| die 2 "Failed to build dist - Halting"
 
     cmake -G "MSYS Makefiles" -Denable_java=ON -Denable_model-checking=OFF -Denable_lua=OFF -Denable_compile_optimizations=ON  -Denable_smpi=ON -Denable_smpi_MPICH3_testsuite=ON -Denable_compile_warnings=OFF -Denable_documentation=OFF . \
     || die 5 "Failed to perform the Cmake for $build_mode - Halting"
 
 
     cmake -G "MSYS Makefiles" -Denable_java=ON -Denable_model-checking=OFF -Denable_lua=OFF -Denable_compile_optimizations=ON  -Denable_smpi=ON -Denable_smpi_MPICH3_testsuite=ON -Denable_compile_warnings=OFF -Denable_documentation=OFF . \
     || die 5 "Failed to perform the Cmake for $build_mode - Halting"
 
-    make -j$NUMBER_OF_PROCESSORS || die 5 "Build failure - Halting"
+    make -j$NUMBER_OF_PROCESSORS VERBOSE=1|| die 5 "Build failure - Halting"
 
 
-    make nsis || die 6 "Failure while generating the Windows executable - Halting"
+    make nsis VERBOSE=1|| die 6 "Failure while generating the Windows executable - Halting"
 
 else
     # Linux:
 
 else
     # Linux:
@@ -49,7 +49,7 @@ else
     cmake -Denable_documentation=OFF $WORKSPACE || die 1 "Failed to do the first cmake - Halting"
 
     rm Simgrid*.tar.gz
     cmake -Denable_documentation=OFF $WORKSPACE || die 1 "Failed to do the first cmake - Halting"
 
     rm Simgrid*.tar.gz
-    make dist || die 2 "Failed to build dist - Halting"
+    make dist VERBOSE=1 || die 2 "Failed to build dist - Halting"
 
     tar xzf `cat VERSION`.tar.gz || die 3 "Failed to extract the generated tgz - Halting"
 
 
     tar xzf `cat VERSION`.tar.gz || die 3 "Failed to extract the generated tgz - Halting"
 
@@ -72,7 +72,7 @@ else
 
     [ $? -eq 0 ] || die 5 "Failed to perform the Cmake for $build_mode - Halting"
 
 
     [ $? -eq 0 ] || die 5 "Failed to perform the Cmake for $build_mode - Halting"
 
-    make -j$NUMBER_OF_PROCESSORS || die 6 "Build failure - Halting"
+    make -j$NUMBER_OF_PROCESSORS VERBOSE=1 || die 6 "Build failure - Halting"
 fi
 
 echo "running tests with $NUMBER_OF_PROCESSORS processors"
 fi
 
 echo "running tests with $NUMBER_OF_PROCESSORS processors"
index 3a65693..39327a0 100755 (executable)
@@ -31,7 +31,7 @@ done
 cd $WORKSPACE/build
 
 cmake -Denable_documentation=OFF -Denable_lua=OFF -Denable_tracing=ON -Denable_smpi=ON  -Denable_smpi_MPICH3_testsuite=OFF -Denable_compile_optimizations=OFF -Denable_compile_warnings=ON -Denable_lib_static=OFF -Denable_model-checking=OFF -Denable_latency_bound_tracking=OFF -Denable_gtnets=OFF -Denable_jedule=OFF -Denable_mallocators=OFF -Denable_memcheck_xml=ON $WORKSPACE
 cd $WORKSPACE/build
 
 cmake -Denable_documentation=OFF -Denable_lua=OFF -Denable_tracing=ON -Denable_smpi=ON  -Denable_smpi_MPICH3_testsuite=OFF -Denable_compile_optimizations=OFF -Denable_compile_warnings=ON -Denable_lib_static=OFF -Denable_model-checking=OFF -Denable_latency_bound_tracking=OFF -Denable_gtnets=OFF -Denable_jedule=OFF -Denable_mallocators=OFF -Denable_memcheck_xml=ON $WORKSPACE
-make
+make VERBOSE=1
 
 ctest -D ExperimentalStart || true
 ctest -D ExperimentalConfigure || true
 
 ctest -D ExperimentalStart || true
 ctest -D ExperimentalConfigure || true
@@ -44,11 +44,11 @@ if [ -f Testing/TAG ] ; then
    mv Testing/`head -n 1 < Testing/TAG`/DynamicAnalysis.xml  $WORKSPACE
 fi
 
    mv Testing/`head -n 1 < Testing/TAG`/DynamicAnalysis.xml  $WORKSPACE
 fi
 
-make clean
+make clean VERBOSE=1
 
 cmake -Denable_documentation=OFF -Denable_lua=OFF -Denable_tracing=ON -Denable_smpi=ON -Denable_smpi_MPICH3_testsuite=ON -Denable_compile_optimizations=OFF -Denable_compile_warnings=ON -Denable_lib_static=OFF -Denable_model-checking=OFF -Denable_latency_bound_tracking=OFF -Denable_gtnets=OFF -Denable_jedule=OFF -Denable_mallocators=OFF -Denable_memcheck=OFF -Denable_memcheck_xml=OFF -Denable_coverage=ON $WORKSPACE
 
 
 cmake -Denable_documentation=OFF -Denable_lua=OFF -Denable_tracing=ON -Denable_smpi=ON -Denable_smpi_MPICH3_testsuite=ON -Denable_compile_optimizations=OFF -Denable_compile_warnings=ON -Denable_lib_static=OFF -Denable_model-checking=OFF -Denable_latency_bound_tracking=OFF -Denable_gtnets=OFF -Denable_jedule=OFF -Denable_mallocators=OFF -Denable_memcheck=OFF -Denable_memcheck_xml=OFF -Denable_coverage=ON $WORKSPACE
 
-make
+make VERBOSE=1
 ctest -D ExperimentalStart || true
 ctest -D ExperimentalConfigure || true
 ctest -D ExperimentalBuild || true
 ctest -D ExperimentalStart || true
 ctest -D ExperimentalConfigure || true
 ctest -D ExperimentalBuild || true