Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 549a75fd authored by Adrien Leman's avatar Adrien Leman Committed by hhakim
Browse files

delete windows sh

parent 7181ab19
No related branches found
No related tags found
No related merge requests found
##################################################################
####################### run_nightly ##############################
# This shell-bash SCRIPT performs :
# - svn checkout
# - compile the selected target of faust project
# - run some examples relating to these targets.
#
# faust_test directory contains the sources of the faust project.
# faust_test_build directory contains the build of faust project.
# faust_output directory contains the build of faust project.
#
# WARNING : Please adjust your environment variables, corresponding
# to your computer configurations (library path)
#
# svn checkout --username XXX https://scm.gforge.inria.fr/authscm/XXX/svn/faust/trunk/devcpp/test/CTest_nightly
#
###################################################################
# Directory of the local path of the nightly project
export PATH_DIR_RUN_NIGHTLY='C:\Users\ci\FAUST\CTest_nightly'
# Directory of the library used in the FAUST PROJECT
#export EIGENDIR='/usr/include/eigen3'
#export OPENBLASDIR='/opt/OpenBLAS'
#export MATIODIR='/usr/local'
#export CUDADIR='/usr/local/cuda-7.5'
# export version of gcc
#export CC='/usr/lib64/ccache/gcc'
#export CXX='/usr/lib64/ccache/g++'
export CC='C:\Program Files\mingw-w64\x86_64-4.9.2-posix-seh-rt_v4-rev4\mingw64\bin\gcc'
export CXX='C:\Program Files\mingw-w64\x86_64-4.9.2-posix-seh-rt_v4-rev4\mingw64\bin\g++'
# /usr/local/bin/matlab in the PATH
#export PATH=/usr/local/bin:$PATH
# cuda in the PATH
#export PATH=/usr/local/cuda-7.5/bin:/usr/lib64/ccache/:$PATH
if [ ! -d "$PATH_DIR_RUN_NIGHTLY" ];
then
echo "ERROR : $PATH_DIR_RUN_NIGHTLY directory is not defined or do no exist !!!!!! Please select a valid PATH_DIR_RUN_NIGHTLY "
exit 1
fi
#export HDF5_ROOT_DIR=/home/aleman/Library/hdf5-1.8.16/src/.libs
# CTEST OPTION
export CTEST_CONFIGURE_OPTIONS="\
-DBUILD_OPENBLAS=OFF;\
-DBUILD_READ_MAT_FILE=OFF;\
-DBUILD_READ_XML_FILE=OFF;\
-DBUILD_MATLAB_MEX_FILES=ON;\
-DBUILD_USE_GPU:BOOL=OFF;\
-DFAUST_USE_PROFILING=OFF;\
-DBUILD_VERBOSE=OFF;\
-DBUILD_DOCUMENTATION:BOOL=OFF"
#-DDASH_TESTING:BOOL=ON;\
#-DBUILD_DEBUG:BOOL=OFF;\
#-DBUILD_COVERAGE:BOOL=ON;\
cd $PATH_DIR_RUN_NIGHTLY
rm -rf faust_test
rm -rf faust_test_build
rm -rf faust_output
mkdir faust_test
mkdir faust_test_build
mkdir faust_output
# launch ctest file
ctest -VV -C Release -S faustTest.cmake
#ctest -VV -C Release -S faustTestContinuous.cmake
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment