Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions jenkins/nightly/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,26 @@ pipeline {
}
}
}
stage('Build documentation PDF') {
agent {
label 'Worker&&Containers'
}
steps {
// The timeout cannot be in stage options, because that would
// include the time needed to provision a node.
timeout(time: 15, unit: 'MINUTES') {
withMavenWorkspace {
echo "Generate documentation and distribution packages."
sh """mvn clean install \
-Pdocumentation-pdf \
-DskipTests \
--fail-at-end \
-Dscan=false -Dno-build-cache
"""
}
}
}
}
}
}
}
Expand Down
Loading