We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f5f423 commit d95ec5eCopy full SHA for d95ec5e
jenkins/nightly/Jenkinsfile
@@ -90,6 +90,26 @@ pipeline {
90
}
91
92
93
+ stage('Build documentation PDF') {
94
+ agent {
95
+ label 'Worker&&Containers'
96
+ }
97
+ steps {
98
+ // The timeout cannot be in stage options, because that would
99
+ // include the time needed to provision a node.
100
+ timeout(time: 15, unit: 'MINUTES') {
101
+ withMavenWorkspace {
102
+ echo "Generate documentation and distribution packages."
103
+ sh """mvn clean install \
104
+ -Pdocumentation-pdf \
105
+ -DskipTests \
106
+ --fail-at-end \
107
+ -Dscan=false -Dno-build-cache
108
+ """
109
110
111
112
113
114
115
0 commit comments