eive-tmtc/automation/Jenkinsfile

18 lines
267 B
Groovy

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