Syntax for archiving artifacts in the pipeline used to be
archiveArtifacts artifacts: '*/.log'
Now statements like this are simply silently ignored (build does not fail, it just does not do any archiving)
The Pipeline Syntax generator now seems to generate
step archiveArtifacts('*/.log')
Was this an intentional change (basically all pipelines need to be changed to the new way? Shouldn't at the very least the builds fail instead of silently ignoring archiving?
It used to work with LTS 2.73.2 and now fails with LTS 2.73.3
- duplicates
-
JENKINS-48115 disableConcurrentBuilds() within an options block is now broken, throws Groovy exception during Jenkinsfile parsing
- Closed