Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added jenkins run script
  • Loading branch information
timlinux committed Jan 24, 2014
1 parent c21973f commit dd26778
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions scripts/jenkins-run.sh
@@ -0,0 +1,17 @@
#!/bin/bash

if [ -d build ]
then
rm -rf build
fi

mkdir build
cd build
cmake ..
#xvfb-run --auto-servernum --server-num=1 --server-args="-screen 0 1024x768x24" make Experimental || true
make Experimental || true
#TRES=0
#ctest -T test --no-compress-output || true
if [ -f Testing/TAG ] ; then
xsltproc ../tests/ctest2junix.xsl Testing/`head -n 1 < Testing/TAG`/Test.xml > CTestResults.xml
fi

0 comments on commit dd26778

Please sign in to comment.