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

Fixing jenkins scripts

parent 6326435b
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@ then
source ~/.bashrc
sh ./autogen.sh
module load gcc/4.9.2
./install
./install -s
make
if [ $? -ne 0 ]; then exit 1 ; fi
......@@ -125,7 +125,7 @@ else
echo "Compiling general"
source ~/.bashrc
sh ./autogen.sh
./install
./install -s
mpirun -np 2 ./src/pdata
mpirun -np 3 ./src/pdata
......
......@@ -49,6 +49,39 @@ if [ $? -ne 0 ]; then
echo -e "Configure\033[91;5;1m FAILED \033[0m"
exit 1
fi
# pull from all the projects
cd openfpm_data
git pull origin develop
if [ $? -ne 0 ]; then
echo -e "Configure\033[91;5;1m FAILED \033[0m"
exit 1
fi
cd ..
cd openfpm_devices
git pull origin master
if [ $? -ne 0 ]; then
echo -e "Configure\033[91;5;1m FAILED \033[0m"
exit 1
fi
cd ..
cd openfpm_vcluster
git pull origin master
if [ $? -ne 0 ]; then
echo -e "Configure\033[91;5;1m FAILED \033[0m"
exit 1
fi
cd ..
cd openfpm_io
git pull origin master
if [ $? -ne 0 ]; then
echo -e "Configure\033[91;5;1m FAILED \033[0m"
exit 1
fi
cd ..
git submodule update
if [ $? -ne 0 ]; then
echo -e "Configure\033[91;5;1m FAILED \033[0m"
......
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