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