Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
JenkinsConfiguration
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
ChimeraTK Mirror
JenkinsConfiguration
Commits
e7ea6b20
Unverified
Commit
e7ea6b20
authored
4 years ago
by
Martin Christoph Hierholzer
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Update buildTestDeploy.groovy
parent
f2200d4e
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
vars/buildTestDeploy.groovy
+92
-83
92 additions, 83 deletions
vars/buildTestDeploy.groovy
with
92 additions
and
83 deletions
vars/buildTestDeploy.groovy
+
92
−
83
View file @
e7ea6b20
...
...
@@ -16,107 +16,116 @@ def call(ArrayList<String> dependencyList, String gitUrl='',
'tumbleweed-Debug'
,
'tumbleweed-Release'
])
{
// only keep builds which exist for all dependencies
script
{
node
(
'Docker'
)
{
dependencyList
.
each
{
if
(
it
!=
""
)
{
copyArtifacts
filter:
"builds.txt"
,
fingerprintArtifacts:
true
,
projectName:
"${it}"
,
selector:
lastSuccessful
(),
target:
"artefacts"
myFile
=
readFile
(
env
.
WORKSPACE
+
"/artefacts/builds.txt"
)
def
depBuilds
=
myFile
.
split
(
"\n"
)
def
curBuilds
=
builds
.
clone
()
curBuilds
.
each
{
def
build
=
it
if
(
depBuilds
.
find
{
it
==
build
}
!=
it
)
{
builds
.
removeAll
{
it
==
build
}
// lock against other builds depending on this build. Depdencies will only keep the lock shortly before downloading the artefact,
// so a dependent's build does not prevent us from starting the build but no dependent may start its build from now on.
lock
(
"build-${env.JOB_NAME}"
)
{
// only keep builds which exist for all dependencies
script
{
node
(
'Docker'
)
{
dependencyList
.
each
{
if
(
it
!=
""
)
{
// wait until dependency is no longer building (to reduce "storm" of builds after core libraries were built)
lock
(
"build-${it}"
)
{}
copyArtifacts
filter:
"builds.txt"
,
fingerprintArtifacts:
true
,
projectName:
"${it}"
,
selector:
lastSuccessful
(),
target:
"artefacts"
myFile
=
readFile
(
env
.
WORKSPACE
+
"/artefacts/builds.txt"
)
def
depBuilds
=
myFile
.
split
(
"\n"
)
def
curBuilds
=
builds
.
clone
()
curBuilds
.
each
{
def
build
=
it
if
(
depBuilds
.
find
{
it
==
build
}
!=
it
)
{
builds
.
removeAll
{
it
==
build
}
}
}
}
}
}
// publish our list of builds as artefact for our downstream builds
writeFile
file:
"builds.txt"
,
text:
builds
.
join
(
"\n"
)
archiveArtifacts
artifacts:
"builds.txt"
,
onlyIfSuccessful:
false
// publish our list of builds as artefact for our downstream builds
writeFile
file:
"builds.txt"
,
text:
builds
.
join
(
"\n"
)
archiveArtifacts
artifacts:
"builds.txt"
,
onlyIfSuccessful:
false
}
}
}
// form comma-separated list of dependencies as needed for the trigger configuration
def
dependencies
=
dependencyList
.
join
(
','
)
if
(
dependencies
==
""
)
{
dependencies
=
"Create Docker Images"
}
// form comma-separated list of dependencies as needed for the trigger configuration
def
dependencies
=
dependencyList
.
join
(
','
)
if
(
dependencies
==
""
)
{
dependencies
=
"Create Docker Images"
}
pipeline
{
agent
none
pipeline
{
agent
none
// setup build trigger
triggers
{
pollSCM
(
'H/5 * * * *'
)
upstream
(
upstreamProjects:
dependencies
,
threshold:
hudson
.
model
.
Result
.
UNSTABLE
)
}
options
{
disableConcurrentBuilds
()
copyArtifactPermission
(
'*'
)
buildDiscarder
(
logRotator
(
numToKeepStr:
'15'
,
artifactNumToKeepStr:
'5'
))
}
// setup build trigger
triggers
{
pollSCM
(
'H/5 * * * *'
)
upstream
(
upstreamProjects:
dependencies
,
threshold:
hudson
.
model
.
Result
.
UNSTABLE
)
}
options
{
disableConcurrentBuilds
()
copyArtifactPermission
(
'*'
)
buildDiscarder
(
logRotator
(
numToKeepStr:
'15'
,
artifactNumToKeepStr:
'5'
))
}
stages
{
// apply changes from project-template
stage
(
'preprocess'
)
{
steps
{
script
{
node
(
'Docker'
)
{
if
(
env
.
BRANCH_NAME
&&
env
.
BRANCH_NAME
!=
''
)
{
git
branch:
env
.
BRANCH_NAME
,
url:
gitUrl
}
else
{
git
gitUrl
stages
{
// apply changes from project-template
stage
(
'preprocess'
)
{
steps
{
script
{
node
(
'Docker'
)
{
if
(
env
.
BRANCH_NAME
&&
env
.
BRANCH_NAME
!=
''
)
{
git
branch:
env
.
BRANCH_NAME
,
url:
gitUrl
}
else
{
git
gitUrl
}
sh
"""
git config credential.helper store
git remote add project-template "https://github.com/ChimeraTK/project-template" || true
git remote set-url origin `echo ${gitUrl} | sed -e 's_http://doocs-git.desy.de/cgit/_git@doocs-git.desy.de:_' -e 's_/\$__'`
git remote update
git merge --squash --no-edit project-template/master && git commit -m "automatic merge of project-template" && git push --all || true
"""
// We could also apply the clang-format style here, but this should be discussed first.
// find \( -name '*.cc' -o -name '*.cxx' -o -name '*.c' -o -name '*.cpp' -o -name '*.h' -o -name '*.hpp' -o -name '*.hxx' -o -name '*.hh' \) -exec clang-format-6.0 -style=file -i \{\} \;
// git commit -a -m "Automated commit: apply clang-format" && git push --all || true
}
sh
"""
git config credential.helper store
git remote add project-template "https://github.com/ChimeraTK/project-template" || true
git remote set-url origin `echo ${gitUrl} | sed -e 's_http://doocs-git.desy.de/cgit/_git@doocs-git.desy.de:_' -e 's_/\$__'`
git remote update
git merge --squash --no-edit project-template/master && git commit -m "automatic merge of project-template" && git push --all || true
"""
// We could also apply the clang-format style here, but this should be discussed first.
// find \( -name '*.cc' -o -name '*.cxx' -o -name '*.c' -o -name '*.cpp' -o -name '*.h' -o -name '*.hpp' -o -name '*.hxx' -o -name '*.hh' \) -exec clang-format-6.0 -style=file -i \{\} \;
// git commit -a -m "Automated commit: apply clang-format" && git push --all || true
}
}
}
}
stage
(
'build'
)
{
// Run the build stages for all labels + build types in parallel, each in a separate docker container
steps
{
script
{
parallel
builds
.
collectEntries
{
[
"${it}"
:
transformIntoStep
(
dependencyList
,
it
,
gitUrl
)]
}
stage
(
'build'
)
{
// Run the build stages for all labels + build types in parallel, each in a separate docker container
steps
{
script
{
parallel
builds
.
collectEntries
{
[
"${it}"
:
transformIntoStep
(
dependencyList
,
it
,
gitUrl
)]
}
}
}
}
// end stage build
}
// end stages
post
{
failure
{
emailext
body:
'$DEFAULT_CONTENT'
,
recipientProviders:
[
brokenTestsSuspects
(),
brokenBuildSuspects
(),
developers
()],
subject:
'[Jenkins] $DEFAULT_SUBJECT'
,
to:
env
.
MAILTO
mattermostSend
channel:
env
.
JOB_NAME
,
color:
"danger"
,
message:
"Build of ${env.JOB_NAME} failed."
mattermostSend
channel:
"Jenkins"
,
color:
"danger"
,
message:
"Build of ${env.JOB_NAME} failed."
}
}
// end stage build
}
// end stages
post
{
failure
{
emailext
body:
'$DEFAULT_CONTENT'
,
recipientProviders:
[
brokenTestsSuspects
(),
brokenBuildSuspects
(),
developers
()],
subject:
'[Jenkins] $DEFAULT_SUBJECT'
,
to:
env
.
MAILTO
mattermostSend
channel:
env
.
JOB_NAME
,
color:
"danger"
,
message:
"Build of ${env.JOB_NAME} failed."
mattermostSend
channel:
"Jenkins"
,
color:
"danger"
,
message:
"Build of ${env.JOB_NAME} failed."
}
always
{
node
(
'Docker'
)
{
script
{
helper
.
doPublishBuildTestDeploy
(
builds
)
always
{
node
(
'Docker'
)
{
script
{
helper
.
doPublishBuildTestDeploy
(
builds
)
}
}
}
script
{
if
(
currentBuild
?
.
getPreviousBuild
()
?
.
result
==
'FAILURE'
)
{
if
(!
currentBuild
.
resultIsWorseOrEqualTo
(
currentBuild
.
getPreviousBuild
().
result
))
{
mattermostSend
channel:
env
.
JOB_NAME
,
color:
"good"
,
message:
"Build of ${env.JOB_NAME} is good again."
mattermostSend
channel:
"Jenkins"
,
color:
"good"
,
message:
"Build of ${env.JOB_NAME} is good again."
script
{
if
(
currentBuild
?.
getPreviousBuild
()?.
result
==
'FAILURE'
)
{
if
(
!
currentBuild
.
resultIsWorseOrEqualTo
(
currentBuild
.
getPreviousBuild
().
result
)
)
{
mattermostSend
channel:
env
.
JOB_NAME
,
color:
"good"
,
message:
"Build of ${env.JOB_NAME} is good again."
mattermostSend
channel:
"Jenkins"
,
color:
"good"
,
message:
"Build of ${env.JOB_NAME} is good again."
}
}
}
}
}
// end always
}
// end post
}
// end pipeline
}
// end always
}
// end post
}
// end pipeline
}
// end of lock
}
/**********************************************************************************************************************/
...
...
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