地面站终端 App

10 lines
112 B

pipeline {
agent any
stages {
stage('build') {
steps {
sh 'git status'
}
}
}
}