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