eive-tmtc/automation/Jenkinsfile
Ulrich Mohr 252d140b8e
Some checks failed
EIVE/-/pipeline/pr-main There was a failure building this commit
switched to prebuilt docker image
2023-06-11 11:56:39 +02:00

17 lines
243 B
Groovy

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