Skip to content

Commit 4c90628

Browse files
committed
try to set the yarn version in jenkins
1 parent 8ec0c76 commit 4c90628

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Jenkinsfile

+15
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,21 @@ pipeline {
141141
junit 'test/results-sqlite/junit/*'
142142
}
143143
}
144+
junit 'test/results/junit/*'
145+
}
146+
}
147+
}
148+
stage('Docs') {
149+
when {
150+
not {
151+
equals expected: 'UNSTABLE', actual: currentBuild.result
152+
}
153+
}
154+
steps {
155+
dir(path: 'docs') {
156+
sh 'yarn set version berry'
157+
sh 'yarn install'
158+
sh 'yarn build'
144159
}
145160
stage('Mysql') {
146161
steps {

0 commit comments

Comments
 (0)