Skip to content
Snippets Groups Projects
Commit 256ef08a authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

No commit message

No commit message
parent 47028563
Branches
Tags
No related merge requests found
#!/bin/sh #!/bin/bash
if [ $# -lt 1 ]; then if [ $# -lt 1 ]; then
echo "Usage: $0 arch" 1>&2; echo "Usage: $0 arch [gmsh|getdp]" 1>&2;
echo " with arch in [mac,linux32,linux64,win32,win64]" 1>&2; echo " with arch in [mac,linux32,linux64,win32,win64]" 1>&2;
exit 1; exit 1;
fi fi
if [ $# -lt 2 ] || [ $2 == "gmsh" ]; then
echo "========= Building Gmsh =========="
cd ${HOME}/src/gmsh cd ${HOME}/src/gmsh
svn update svn update
cd utils/nightly cd utils/nightly
ctest -VV -S ./gmsh_$1.ctest ctest -VV -S ./gmsh_$1.ctest
fi
if [ $# -lt 2 ] || [ $2 == "getdp" ]; then
echo "========= Building GetDP =========="
cd ${HOME}/src/getdp cd ${HOME}/src/getdp
svn update svn update
cd utils/nightly cd utils/nightly
ctest -VV -S ./getdp_$1.ctest ctest -VV -S ./getdp_$1.ctest
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment