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
bad48047
Commit
bad48047
authored
May 05, 2021
by
Johannes Visintini
Browse files
Merge branch 'jenkinsfile-minor-fix' into 'master'
Jenkinsfile: fix encouragement/dependency-check if See merge request
!33
parents
b285159c
7387dcda
Pipeline
#1961
created
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Jenkinsfile.template
View file @
bad48047
...
...
@@ -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