Skip to content
Snippets Groups Projects
Commit 68a5e29d authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Activating full compilation with Cmake

parent 3e6cc230
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@ centos_build:
paths:
- ./openfpm_data/build/src/mem_map
script:
- ./build.sh $CI_PROJECT_DIR $CI_RUNNER_TAGS pdata NO $CI_COMMIT_REF_NAME
- ./build.sh $CI_PROJECT_DIR $CI_RUNNER_TAGS pdata full $CI_COMMIT_REF_NAME
centos_run:
stage: test
......@@ -26,7 +26,7 @@ mac_build:
paths:
- ./openfpm_data/build/src/mem_map
script:
- ./build.sh $CI_PROJECT_DIR $CI_RUNNER_TAGS pdata NO $CI_COMMIT_REF_NAME
- ./build.sh $CI_PROJECT_DIR $CI_RUNNER_TAGS pdata full $CI_COMMIT_REF_NAME
mac_run:
stage: test
......@@ -46,7 +46,7 @@ ubuntu_build:
paths:
- ./openfpm_data/build/src/mem_map
script:
- ./build.sh $CI_PROJECT_DIR $CI_RUNNER_EXECUTABLE_TAGS pdata NO $CI_COMMIT_REF_NAME
- ./build.sh $CI_PROJECT_DIR $CI_RUNNER_EXECUTABLE_TAGS pdata full $CI_COMMIT_REF_NAME
ubuntu_run:
stage: test
......
......@@ -117,6 +117,7 @@ else
mkdir $HOME/openfpm_dependencies/openfpm_pdata/$branch
if [ x"$4" == x"full" ]; then
echo "Installing with: ./install -i $HOME/openfpm_dependencies/openfpm_pdata/$branch -s -c \"$installation_dir\" "
./install -i $HOME/openfpm_dependencies/openfpm_pdata/$branch -s -c "$installation_dir"
mv $HOME/openfpm_vars $HOME/openfpm_vars_$branch
source $HOME/openfpm_vars_$branch
......
......@@ -422,7 +422,6 @@ echo "LIBS_SE2=-lvcluster -lofpmmemory_se2 -lparmetis -lmetis -lboost_iostreams
cp example.mk src/example.mk
cp example.mk example/example.mk
echo "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA $nomake"
if [ $nomake -eq 0 ]; then
make clean
make -j $ncore
......
......@@ -12,7 +12,7 @@ function HELP {
echo -e " \033[1;34m-s\033[0m skip user input"
echo -e " \033[1;34m-c\033[0m foward this options to configure"
echo -e " \033[1;34m-h\033[0m Displays this help message"\\n
echo -e " \033[1;34m-m\033[0m Skip to make the test"\\n
echo -e " \033[1;34m-m\033[0m Skip compilation"\\n
echo -e " \033[1mExample:\033[0m ./install -i /dependencies/here -s -c\"some_options someother_option\""\\n
exit 1
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment