Skip to content

Commit

Permalink
Use the simple bash test for the jenkins script
Browse files Browse the repository at this point in the history
Also echo out the cmake options so we can verify configurations are working.
  • Loading branch information
gadomski committed Feb 9, 2012
1 parent 5eb8046 commit a02dc3d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/jenkins.sh
Expand Up @@ -3,11 +3,12 @@
# "clean" == git clean -fdx

CMAKE_OPTS="-G \"Unix Makefiles\" -C test/BuildSetup.jenkins ."
if [[ "$1" == "PDAL-embed-boost" ]]; then
if [ "$1" == "PDAL-embed-boost" ]; then
CMAKE_OPTS="$CMAKE_OPTS -DPDAL_EMBED_BOOST:STRING=ON"
fi
export ORACLE_HOME="/u01/app/oracle/product/11.2.0/dbhome_1"
export PATH="/var/lib/jenkins/local/bin:$PATH"
echo "running: cmake $CMAKE_OPTS"
eval cmake $CMAKE_OPTS
make
./bin/pdal_test test/data

0 comments on commit a02dc3d

Please sign in to comment.