Fix jenkinsfile after messy merge

This commit is contained in:
Jamie Curnow 2024-01-10 09:24:45 +10:00
parent a7fe687bae
commit 33c867895c
No known key found for this signature in database
GPG Key ID: FFBB624C43388E9E

15
Jenkinsfile vendored
View File

@ -89,6 +89,7 @@ pipeline {
stage('Docs') { stage('Docs') {
steps { steps {
dir(path: 'docs') { dir(path: 'docs') {
sh 'yarn set version berry'
sh 'yarn install' sh 'yarn install'
sh 'yarn build' sh 'yarn build'
} }
@ -143,20 +144,6 @@ pipeline {
} }
junit 'test/results/junit/*' junit 'test/results/junit/*'
} }
}
}
stage('Docs') {
when {
not {
equals expected: 'UNSTABLE', actual: currentBuild.result
}
}
steps {
dir(path: 'docs') {
sh 'yarn set version berry'
sh 'yarn install'
sh 'yarn build'
}
stage('Mysql') { stage('Mysql') {
steps { steps {
// Bring up a stack // Bring up a stack