ips/Jenkinsfile

22 lines
421 B
Text
Raw Normal View History

2021-04-25 21:05:28 -03:00
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
}
}
}
}