Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
giscience
big-data
ohsome
parent
Commits
7387dcda
Verified
Commit
7387dcda
authored
May 05, 2021
by
Johannes Visintini
Browse files
Jenkinsfile: fix encouragement/dependency-check if
parent
b285159c
Pipeline
#1960
passed with stage
in 0 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Jenkinsfile.template
View file @
7387dcda
...
...
@@ -186,7 +186,7 @@ pipeline {
stage ('Check Dependencies') {
when {
expression {
if (currentBuild.number > 1) {
if
(
(currentBuild.number > 1)
&& (env.BRANCH_NAME ==~ SNAPSHOT_BRANCH_REGEX))
{
month_pre = new Date(currentBuild.previousBuild.rawBuild.getStartTimeInMillis())[Calendar.MONTH]
echo month_pre.toString()
month_now = new Date(currentBuild.rawBuild.getStartTimeInMillis())[Calendar.MONTH]
...
...
@@ -221,7 +221,7 @@ pipeline {
stage ('Encourage') {
when {
expression {
if
(
(currentBuild.number > 1)
&& (env.BRANCH_NAME ==~ SNAPSHOT_BRANCH_REGEX))
{
if (currentBuild.number > 1) {
date_pre = new Date(currentBuild.previousBuild.rawBuild.getStartTimeInMillis()).clearTime()
echo date_pre.format( 'yyyyMMdd' )
date_now = new Date(currentBuild.rawBuild.getStartTimeInMillis()).clearTime()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment