You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.0 KiB
30 lines
1.0 KiB
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
|
|
"""
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|