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

Parallelizing gin pipeline

parent ba2179be
No related branches found
No related tags found
No related merge requests found
......@@ -62,9 +62,9 @@ parallel (
stage ('run_gin')
{
parallel (
"p1" : {sh "./run.sh $WORKSPACE $NODE_NAME 1"}
"p2" : {sh "./run.sh $WORKSPACE $NODE_NAME 2"}
"p3" : {sh "./run.sh $WORKSPACE $NODE_NAME 3"}
"p1" : {sh "./run.sh $WORKSPACE $NODE_NAME 1"},
"p2" : {sh "./run.sh $WORKSPACE $NODE_NAME 2"},
"p3" : {sh "./run.sh $WORKSPACE $NODE_NAME 3"},
"p4" : {sh "./run.sh $WORKSPACE $NODE_NAME 5"}
)
}
......
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