ci: migrate to jenkins

This commit is contained in:
Jensun Ravichandran 2021-11-03 16:26:32 +01:00
parent b49b7a2d41
commit 916973c3e8

17
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,17 @@
pipeline {
agent none
stages {
stage('Tests') {
agent {
docker {
image 'python:3.9'
}
}
steps {
sh 'pip install .[all] --progress-bar off'
}
}
}
}