Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
faust
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
GitLab upgrade completed. Current version is 17.11.4.
Show more breadcrumbs
faust group
faust
Commits
4ac413c9
Commit
4ac413c9
authored
9 years ago
by
Nicolas Bellot
Committed by
hhakim
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
ajout script test pour Mach
parent
e4d155a6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
misc/CTest_nightly/run_nightly_OS-X.sh
+75
-0
75 additions, 0 deletions
misc/CTest_nightly/run_nightly_OS-X.sh
with
75 additions
and
0 deletions
misc/CTest_nightly/run_nightly_OS-X.sh
0 → 100755
+
75
−
0
View file @
4ac413c9
##################################################################
####################### 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 library used in the FAUST PROJECT
export
PATH
=
$PATH
:/usr/local/MATLAB/R2014b/bin
;
export
PATH
=
$PATH
:usr/local/include
# Directory of the local path of the nightly project
export
PATH_DIR_RUN_NIGHTLY
=
'/Users/ci/faust_nightly'
export
OPENBLASDIR
=
'/Users/ci/local/OPENBLAS-v0.2.15'
export
HDF5_ROOT_DIR
=
'/Users/ci/local/hdf5-1.8.17/lib'
export
EIGENDIR
=
'/Users/ci/local/eigen-3.2.8'
export
MATIODIR
=
/Users/ci/local/matio-1.5.2
#export CUDADIR=/usr/local/cuda-6.5
# export version of gcc
# export CC=/usr/lib64/ccache/gcc
# export CXX=/usr/lib64/ccache/g++
# /usr/local/bin/matlab in the PATH
#export PATH=/usr/local/cuda-7.5/bin:/usr/local/bin:$PATH
#export PATH=/usr/local/cuda-7.5/bin:/usr/local/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
# CTEST OPTION
export
CTEST_CONFIGURE_OPTIONS
=
"-DBUILD_DEBUG:BOOL=OFF;
\
-DDASH_TESTING:BOOL=ON;
\
-DBUILD_COVERAGE:BOOL=ON;
\
-DFAUST_USE_OPENBLAS=ON;
\
-DFAUST_USE_MATIO=ON;
\
-DFAUST_USE_XML=ON;
\
-DFAUST_USE_MEX=OFF;
\
-DFAUST_USE_GPU:BOOL=OFF;
\
-DFAUST_USE_PROFILING=OFF;
\
-DFAUST_ISVERBOSE=OFF;
\
-DFAUST_GEN_DOC:BOOL=OFF"
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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment