mirror of
https://github.com/gnu4cn/jenkins_book_zh.git
synced 2024-12-25 12:20:24 +08:00
13 lines
209 B
Groovy
13 lines
209 B
Groovy
#! /usr/bin/env groovy
|
|
|
|
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('测试构建') {
|
|
steps {
|
|
sh '/home/jenkins/.cargo/bin/mdbook --version'
|
|
}
|
|
}
|
|
}
|
|
}
|