ips/Jenkinsfile
2021-04-25 21:05:28 -03:00

22 lines
No EOL
421 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'gmake'
}
}
stage('Test') {
steps {
sh 'gmake test'
}
}
stage('Release') {
when { tag "v*" }
steps {
archiveArtifacts artifacts: 'artifacts/**', fingerprint: true
}
}
}
}