jenkins_book_zh/Jenkinsfile
2024-08-04 19:32:26 +08:00

13 lines
209 B
Groovy

#! /usr/bin/env groovy
pipeline {
agent any
stages {
stage('测试构建') {
steps {
sh '/home/jenkins/.cargo/bin/mdbook --version'
}
}
}
}