Robin Mueller
4a990e704b
Some checks failed
EIVE/-/pipeline/head There was a failure building this commit
18 lines
267 B
Groovy
18 lines
267 B
Groovy
pipeline {
|
|
environment {
|
|
}
|
|
agent {
|
|
dockerfile {
|
|
dir 'automation'
|
|
reuseNode true
|
|
}
|
|
}
|
|
stages {
|
|
stage('Package') {
|
|
steps {
|
|
sh 'pip install .'
|
|
}
|
|
}
|
|
}
|
|
}
|