serene-golang-implementation/Jenkinsfile

23 lines
399 B
Plaintext
Raw Permalink Normal View History

pipeline {
2021-01-15 18:31:41 +00:00
agent any
stages {
stage('Build') {
steps {
sh("make build")
echo 'Building..'
sh("make clean")
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}