eive-tmtc/automation/Jenkinsfile
Ulrich Mohr 822eaa4c89
Some checks failed
EIVE/-/pipeline/pr-main There was a failure building this commit
removed empty environment block in Jenkinsfile which Jenkins does not like
diva....
2023-06-11 12:01:26 +02:00

15 lines
219 B
Groovy

pipeline {
agent {
docker {
image 'eive-tmtc-ci:d1'
}
}
stages {
stage('Package') {
steps {
sh 'pip install .'
}
}
}
}