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

Adding parallelism to high scale test

parent 7d5365b7
No related branches found
No related tags found
No related merge requests found
......@@ -11,11 +11,13 @@ node ('taurus')
stage ('run_taurus')
{
sh "./run.sh $WORKSPACE $NODE_NAME 24 1 24"
sh "./run.sh $WORKSPACE $NODE_NAME 48 2 24"
sh "./run.sh $WORKSPACE $NODE_NAME 96 4 24"
sh "./run.sh $WORKSPACE $NODE_NAME 192 8 24"
sh "./run.sh $WORKSPACE $NODE_NAME 240 10 24"
parallel (
"24" : {sh "./run.sh $WORKSPACE $NODE_NAME 24 1 24"}
"48" : {sh "./run.sh $WORKSPACE $NODE_NAME 48 2 24"}
"96" : {sh "./run.sh $WORKSPACE $NODE_NAME 96 4 24"}
"192" : {sh "./run.sh $WORKSPACE $NODE_NAME 192 8 24"}
"240" : {sh "./run.sh $WORKSPACE $NODE_NAME 240 10 24"}
)
}
}
......
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