Compare commits

..

No commits in common. "d532b353c4d37dbd7f8597352b1bc157a7c230bc" and "97a01656a1f2b623f19c38db6df04e8478e59f17" have entirely different histories.

12
Jenkinsfile vendored
View File

@ -10,10 +10,7 @@ pipeline {
} }
stage("test") { stage("test") {
steps { steps {
sh ''' sh 'npm run test:junit'
source ~/.bashrc
npm run test:junit
'''
junit 'junit/*.xml' junit 'junit/*.xml'
} }
} }
@ -25,11 +22,8 @@ pipeline {
} }
stage("generate docs") { stage("generate docs") {
steps { steps {
sh ''' sh 'npm run docs'
source ~/.bashrc publishHTML([allowMissing: false, alwaysLinkToLastBuild: true, keepAll: true, reportDir: './docs', reportFiles: 'index.html', reportName: 'AudioShowKit Docs', reportTitles: ''])
npm run docs
'''
publishHTML([allowMissing: false, alwaysLinkToLastBuild: true, keepAll: true, reportDir: './docs', reportFiles: 'index.html', reportName: 'Documentation', reportTitles: ''])
} }
} }
} }