1 changed files with 30 additions and 0 deletions
@ -0,0 +1,30 @@ |
|||
podTemplate(containers: [ |
|||
containerTemplate(name: 'maven', image: 'maven:3.3.9-jdk-8-alpine', ttyEnabled: true, command: 'cat'), |
|||
containerTemplate(name: 'golang', image: 'golang:1.8.0', ttyEnabled: true, command: 'cat') |
|||
]) { |
|||
|
|||
node(POD_LABEL) { |
|||
stage('Get a Maven project') { |
|||
git 'https://github.com/jenkinsci/kubernetes-plugin.git' |
|||
container('maven') { |
|||
stage('Build a Maven project') { |
|||
sh 'mvn -B clean install' |
|||
} |
|||
} |
|||
} |
|||
|
|||
stage('Get a Golang project') { |
|||
git url: 'https://github.com/hashicorp/terraform.git' |
|||
container('golang') { |
|||
stage('Build a Go project') { |
|||
sh """ |
|||
mkdir -p /go/src/github.com/hashicorp |
|||
ln -s `pwd` /go/src/github.com/hashicorp/terraform |
|||
cd /go/src/github.com/hashicorp/terraform && make core-dev |
|||
""" |
|||
} |
|||
} |
|||
} |
|||
|
|||
} |
|||
} |
Loading…
Reference in new issue