eive-tmtc/automation/Jenkinsfile

17 lines
243 B
Plaintext
Raw Normal View History

2023-06-10 14:58:15 +02:00
pipeline {
environment {
}
agent {
2023-06-11 11:56:39 +02:00
docker {
image 'eive-tmtc-ci:d1'
2023-06-10 14:58:15 +02:00
}
}
stages {
stage('Package') {
steps {
sh 'pip install .'
}
}
}
}