diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..d034a75 --- /dev/null +++ b/Jenkinsfile @@ -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 + """ + } + } + } + + } +} \ No newline at end of file