提交 4dd5aad5 编写于 作者: LinuxSuRen's avatar LinuxSuRen

Merge branch 'master' into test/util-password

pipeline {
agent {
label 'golang-1.12'
}
stages {
stage('Build') {
parallel {
stage('MacOS') {
steps {
container('golang') {
sh label: 'make darwin', script: 'make darwin'
}
}
}
stage('Linux') {
steps {
container('golang') {
sh label: 'make linux', script: 'make linux'
}
}
}
stage('Windows') {
steps {
container('golang') {
sh label: 'make win', script: 'make win'
}
}
}
}
}
}
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册