eive-tmtc/automation/Jenkinsfile

18 lines
267 B
Plaintext
Raw Normal View History

2023-06-10 14:58:15 +02:00
pipeline {
environment {
}
agent {
dockerfile {
dir 'automation'
reuseNode true
}
}
stages {
stage('Package') {
steps {
sh 'pip install .'
}
}
}
}