pipeline {
  agent any
  options {
    timestamps()
    ansiColor('xterm')
  }

  stages {
    stage('build') {
      parallel {
        stage('build:go') {
          agent { docker { image 'golang:1.12-stretch' } }
          steps {
            sh 'make build'
          }
        }
      }
    }
  }
}
