Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
openfpm_pdata
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sbalzarini Lab
Software
Parallel Computing
OpenFPM
openfpm_pdata
Commits
7062ecf6
Commit
7062ecf6
authored
6 years ago
by
Pietro Incardona
Browse files
Options
Downloads
Patches
Plain Diff
Latest modules
parent
ebcce75b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Jenkinsfile_numerics_mpi
+123
-0
123 additions, 0 deletions
Jenkinsfile_numerics_mpi
openfpm_numerics
+1
-1
1 addition, 1 deletion
openfpm_numerics
with
124 additions
and
1 deletion
Jenkinsfile_numerics_mpi
0 → 100644
+
123
−
0
View file @
7062ecf6
#
!
groovy
parallel
(
"cifarm-centos-node"
:
{
node
(
'cifarm-centos-node'
)
{
deleteDir
()
int
ntry
=
5
while
(
ntry
!=
0
)
{
try
{
checkout
scm
ntry
=
0
}
catch
(
IOException
e
)
{
ntry
--
sleep
(
50
)
}
}
stage
(
'build_centos'
)
{
sh
"./build.sh $WORKSPACE $NODE_NAME numerics 0"
}
stage
(
'run_gin'
)
{
parallel
(
"1"
:
{
sh
"cd openfpm_numerics && ./run.sh $WORKSPACE $NODE_NAME 1 0 0 numerics"
},
"2"
:
{
sh
"cd openfpm_numerics && ./run.sh $WORKSPACE $NODE_NAME 2 0 0 numerics"
},
"3"
:
{
sh
"cd openfpm_numerics && ./run.sh $WORKSPACE $NODE_NAME 3 0 0 numerics"
},
"4"
:
{
sh
"cd openfpm_numerics && ./run.sh $WORKSPACE $NODE_NAME 4 0 0 numerics"
}
)
sh
"./success.sh 2 gin openfpm_numerics"
}
}
},
"cifarm-mac-node"
:
{
node
(
'cifarm-mac-node'
)
{
deleteDir
()
env
.
PATH
=
"/usr/local/bin:${env.PATH}"
int
ntry
=
5
while
(
ntry
!=
0
)
{
try
{
checkout
scm
ntry
=
0
}
catch
(
IOException
e
)
{
ntry
--
sleep
(
50
)
}
}
stage
(
'build mac'
)
{
sh
"./build.sh $WORKSPACE $NODE_NAME numerics 0"
}
stage
(
'run mac'
)
{
parallel
(
"1"
:
{
sh
"cd openfpm_numerics && ./run.sh $WORKSPACE $NODE_NAME 1 0 0 numerics"
},
"2"
:
{
sh
"cd openfpm_numerics && ./run.sh $WORKSPACE $NODE_NAME 2 0 0 numerics"
},
"3"
:
{
sh
"cd openfpm_numerics && ./run.sh $WORKSPACE $NODE_NAME 3 0 0 numerics"
},
"4"
:
{
sh
"cd openfpm_numerics && ./run.sh $WORKSPACE $NODE_NAME 4 0 0 numerics"
}
)
sh
"./success.sh 2 sbalzarini-mac-15 openfpm_numerics"
}
}
},
"cifarm-ubuntu-node"
:
{
node
(
'cifarm-ubuntu-node'
)
{
deleteDir
()
int
ntry
=
5
while
(
ntry
!=
0
)
{
try
{
checkout
scm
ntry
=
0
}
catch
(
IOException
e
)
{
ntry
--
sleep
(
50
)
}
}
stage
(
'build ubuntu'
)
{
sh
"./build.sh $WORKSPACE $NODE_NAME numerics 0"
}
stage
(
'run ubuntu'
)
{
parallel
(
"1"
:
{
sh
"cd openfpm_numerics && ./run.sh $WORKSPACE $NODE_NAME 1 0 0 numerics"
},
"2"
:
{
sh
"cd openfpm_numerics && ./run.sh $WORKSPACE $NODE_NAME 2 0 0 numerics"
},
"3"
:
{
sh
"cd openfpm_numerics && ./run.sh $WORKSPACE $NODE_NAME 3 0 0 numerics"
},
"4"
:
{
sh
"cd openfpm_numerics && ./run.sh $WORKSPACE $NODE_NAME 4 0 0 numerics"
}
)
sh
"./success.sh 2 gin openfpm_numerics"
}
}
}
)
This diff is collapsed.
Click to expand it.
openfpm_numerics
@
147a976c
Subproject commit
5060f505170523624fa52b786c3ae3f2632b7948
Subproject commit
147a976ce972b92e9b04e72eac29de0439dabc6f
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment