forked from remote/site-ffmuc
11 lines
128 B
Groovy
11 lines
128 B
Groovy
node {
|
|
stage 'Checkout'
|
|
checkout scm
|
|
|
|
stage 'Build'
|
|
sh "make sign V=s"
|
|
|
|
stage 'Archive'
|
|
archive 'output/**/*'
|
|
}
|