audioshowkit/Jenkinsfile

79 lines
2.8 KiB
Plaintext
Raw Normal View History

2022-04-17 06:37:34 +00:00
pipeline {
2022-04-16 08:22:01 +00:00
agent any
2022-04-17 06:37:34 +00:00
stages {
2022-04-16 08:22:01 +00:00
stage("install") {
steps {
2022-04-18 02:54:43 +00:00
dir('audioshowkit') {
nodejs('NodeJS (17.4.0)') {
sh "npm install"
}
2022-04-16 08:22:01 +00:00
}
}
}
stage("build") {
steps {
2022-04-18 02:54:43 +00:00
dir('audioshowkit') {
nodejs('NodeJS (17.4.0)') {
sh "npm run build:dev"
}
2022-04-16 08:22:01 +00:00
}
}
}
stage("test") {
steps {
2022-04-18 02:54:43 +00:00
dir('audioshowkit') {
nodejs('NodeJS (17.4.0)') {
2022-04-18 04:38:57 +00:00
sh "npm run test:junit"
2022-04-18 02:54:43 +00:00
}
junit 'junit/*.xml'
2022-04-16 08:22:01 +00:00
}
}
}
2022-04-18 03:35:25 +00:00
stage("archive product") {
2022-04-16 08:36:22 +00:00
steps {
2022-04-18 03:25:54 +00:00
archiveArtifacts artifacts: 'audioshowkit/dist/audioshowkit.js', followSymlinks: false
}
}
2022-04-18 03:35:25 +00:00
stage("publish") {
parallel {
stage("setup showcase") {
stages {
stage("install showcase") {
steps {
dir('showcase') {
nodejs('NodeJS (17.4.0)') {
sh "npm i"
}
}
}
}
stage("build showcase") {
steps {
dir('showcase') {
nodejs('NodeJS (17.4.0)') {
sh "npm run build"
}
}
}
}
stage("deploy showcase") {
steps {
publishHTML([allowMissing: false, alwaysLinkToLastBuild: false, keepAll: false, reportDir: 'showcase/dist', reportFiles: 'index.html', reportName: 'AudioShowKit Demo', reportTitles: ''])
2022-04-18 01:47:16 +00:00
}
}
}
}
2022-04-18 03:35:25 +00:00
stage("generate docs") {
2022-04-18 01:47:16 +00:00
steps {
2022-04-18 03:35:25 +00:00
dir('audioshowkit') {
2022-04-18 02:54:43 +00:00
nodejs('NodeJS (17.4.0)') {
2022-04-18 03:35:25 +00:00
sh "npm run docs"
2022-04-18 02:54:43 +00:00
}
2022-04-18 01:47:16 +00:00
}
2022-04-18 03:35:25 +00:00
publishHTML([allowMissing: false, alwaysLinkToLastBuild: false, keepAll: false, reportDir: 'audioshowkit/docs', reportFiles: 'index.html', reportName: 'AudioShowKit JSDocs', reportTitles: ''])
2022-04-18 01:47:16 +00:00
}
2022-04-16 08:22:01 +00:00
}
}
}
}
}