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

Fixing pipelines

parent 46615d97
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,7 @@ function test_version_step_vm()
#check openfpm_pdata
echo "sha1_project=\$(git rev-parse master)" >> check_script
echo "sha1_remote=\$(git ls-remote $1 master | awk '{print $1;}')" >> check_script
echo "sha1_remote=\$(git ls-remote $1 master | awk '{print \$1;}')" >> check_script
echo "echo \"Local: \$sha1_project Remote: \$sha1_remote\" " >> check_script
......@@ -76,9 +76,9 @@ function test_version_step_vm()
echo "fi" >> check_script
echo "cd .." >> check_script
vagrant scp check_script $2:/home/vagrant/openfpm/openfpm_pdata
vagrant scp check_script $2:/home/vagrant/
vagrant ssh $2 -c "cd openfpm/openfpm_pdata/;chmod a+x check_script;./check_script"
vagrant ssh $2 -c "chmod a+x check_script;./check_script"
if [ x"$?" == "0" ]; then
phase_failure=false
else
......
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