audioshowkit/Jenkinsfile

35 lines
1021 B
Plaintext
Raw Normal View History

2022-04-17 01:37:34 -05:00
pipeline {
agent {
kubernetes {
cloud 'rsys-devel'
defaultContainer 'nodejs'
inheritFrom 'nodejs'
}
}
2022-04-17 01:37:34 -05:00
stages {
2022-04-16 03:22:01 -05:00
stage("install") {
steps {
sh 'npm install'
2022-04-16 03:22:01 -05:00
}
}
stage("test") {
2022-04-16 03:22:01 -05:00
steps {
sh 'npm run test:junit'
recordCoverage(tools: [[parser: 'JUNIT', pattern: 'junit/*.xml']])
2022-04-16 03:22:01 -05:00
}
}
stage("build") {
2022-04-16 03:36:22 -05:00
steps {
sh 'npm run build:prod'
2023-05-03 08:26:48 -05:00
archiveArtifacts artifacts: 'dist/audioshowkit.js', fingerprint: true, followSymlinks: false, onlyIfSuccessful: true
2022-04-17 22:25:54 -05:00
}
}
stage("generate docs") {
steps {
sh 'npm run docs'
2023-05-03 08:43:24 -05:00
publishHTML([allowMissing: false, alwaysLinkToLastBuild: true, keepAll: true, reportDir: './docs', reportFiles: 'index.html', reportName: 'Documentation', reportTitles: ''])
2022-04-16 03:22:01 -05:00
}
}
}
}