eive-tmtc/automation/Jenkinsfile
Robin Mueller 4a990e704b
Some checks failed
EIVE/-/pipeline/head There was a failure building this commit
added basic automation file
2023-06-10 14:58:15 +02:00

18 lines
267 B
Groovy

pipeline {
environment {
}
agent {
dockerfile {
dir 'automation'
reuseNode true
}
}
stages {
stage('Package') {
steps {
sh 'pip install .'
}
}
}
}