Skip to content

Instantly share code, notes, and snippets.

@majorsilence
Created February 13, 2022 22:24
Show Gist options
  • Select an option

  • Save majorsilence/bcb0661fae5885bed6e61f9eec0b5f3f to your computer and use it in GitHub Desktop.

Select an option

Save majorsilence/bcb0661fae5885bed6e61f9eec0b5f3f to your computer and use it in GitHub Desktop.
Go Jenkins Pipeline
pipeline {
agent none
stages {
stage('build and test') {
agent {
docker {
image 'golang:1.16'
}
}
steps {
echo "building"
sh """
go build
go test
"""
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment