prototorch_models/Jenkinsfile
Alexander Engelsberger 67fff5df3c
ci: add jenkinsfile
2021-11-04 11:04:19 +01:00

21 lines
354 B
Groovy

pipeline {
agent none
stages {
stage('Tests') {
agent {
docker {
image 'python:3.9'
args '--user 0:0'
}
}
steps {
sh 'pip install pip --upgrade --progress-bar off'
sh 'pip install .[all] --progress-bar off'
sh './tests/test_examples.sh examples'
}
}
}
}