Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
commit the script I use to compile simgrid
authorMartin Quinson <martin.quinson@loria.fr>
Fri, 28 Apr 2017 08:09:29 +0000 (10:09 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Fri, 28 Apr 2017 08:09:29 +0000 (10:09 +0200)
BuildSimGrid.sh [new file with mode: 0755]

diff --git a/BuildSimGrid.sh b/BuildSimGrid.sh
new file mode 100755 (executable)
index 0000000..5f3ce84
--- /dev/null
@@ -0,0 +1,11 @@
+#! /bin/sh
+#
+# This little script rebuilds and runs the SimGrid archive in parallel, extracting a log
+# This is almost an internal script, but others may find this useful
+#
+# Copyright (C) 2017 The SimGrid Team. Licence: LGPL of WDFPL, as you want.
+
+(
+  (nice make -j4 || make) && nice ctest -j4 --output-on-failure ; date
+) 2>&1 | tee BuildSimGrid.sh.log
+exit 0