18 lines
242 B
Groovy
18 lines
242 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
sh 'bash ./scripts/inst.sh'
|
|
}
|
|
}
|
|
|
|
stage('Archive') {
|
|
steps {
|
|
archiveArtifacts(artifacts: '*.jar', fingerprint: true)
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|