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

Adding example compilarion and run

parent 2cbbdc7e
No related branches found
No related tags found
No related merge requests found
#!groovy
parallel (
"gin" : {node ('gin')
{
deleteDir()
checkout scm
stage ('build_gin')
{
sh "./build.sh $WORKSPACE $NODE_NAME pdata full && make install"
}
stage ('run_example_gin')
{
sh "export PATH=\"/usr/local/binutils/bin/:$PATH\" && source $HOME/openfpm_vars_master && cd example && make"
}
}},
"sb15" : {node ('sbalzarini-mac-15')
{
deleteDir()
checkout scm
env.PATH = "/usr/local/bin:${env.PATH}"
stage ('build_sb15')
{
sh "./build.sh $WORKSPACE $NODE_NAME pdata full && make install"
}
stage ('run_example_sb15')
{
sh "source $HOME/openfpm_vars_master && cd example && make"
}
}
}
)
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