jenkins_book_zh/Jenkinsfile

13 lines
209 B
Plaintext
Raw Normal View History

2024-08-04 19:32:26 +08:00
#! /usr/bin/env groovy
pipeline {
agent any
stages {
stage('测试构建') {
steps {
sh '/home/jenkins/.cargo/bin/mdbook --version'
}
}
}
}