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

Fixing MPI example compilation

parent 113245cc
No related merge requests found
...@@ -13,7 +13,7 @@ parallel ( ...@@ -13,7 +13,7 @@ parallel (
stage ('run example ubuntu') stage ('run example ubuntu')
{ {
sh "export PATH=\"/usr/local/binutils/bin/:$PATH\" && source $HOME/openfpm_vars_master && cd example && make run" sh "export PATH=\"/usr/local/binutils/bin/:$PATH\" && . $HOME/openfpm_vars_master && cd example && make run"
} }
}}, }},
...@@ -29,7 +29,7 @@ parallel ( ...@@ -29,7 +29,7 @@ parallel (
stage ('run mac') stage ('run mac')
{ {
sh "source $HOME/openfpm_vars_master && cd example && make" sh ". $HOME/openfpm_vars_master && cd example && make"
} }
} }
}, },
...@@ -45,7 +45,7 @@ parallel ( ...@@ -45,7 +45,7 @@ parallel (
stage ('run example centos') stage ('run example centos')
{ {
sh "export PATH=\"/usr/local/binutils/bin/:$PATH\" && source $HOME/openfpm_vars_master && cd example && make run" sh "export PATH=\"/usr/local/binutils/bin/:$PATH\" && . $HOME/openfpm_vars_master && cd example && make run"
} }
}}, }},
......
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