This commit is contained in:
parent
7adfaa0119
commit
83968f2916
11
Jenkinsfile
vendored
11
Jenkinsfile
vendored
@ -10,11 +10,20 @@ pipeline {
|
||||
}
|
||||
stage('Build') {
|
||||
steps {
|
||||
sh './gradlew build'
|
||||
sh './gradlew build typedoc'
|
||||
}
|
||||
post {
|
||||
success {
|
||||
archiveArtifacts artifacts: 'build/libs/*', fingerprint: true
|
||||
|
||||
publishHTML target: [
|
||||
allowMissing: false,
|
||||
alwaysLinkToLastBuild: false,
|
||||
keepAll: false,
|
||||
reportDir: 'build/typedoc',
|
||||
reportFiles: 'index.html',
|
||||
reportName: 'TypeDoc'
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user