mirror of
https://codeberg.org/Toasterson/ips.git
synced 2026-04-10 13:20:42 +00:00
22 lines
421 B
Text
22 lines
421 B
Text
|
|
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
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|