2021-11-03 16:26:32 +01:00
|
|
|
pipeline {
|
|
|
|
agent none
|
|
|
|
stages {
|
|
|
|
stage('Tests') {
|
|
|
|
agent {
|
|
|
|
docker {
|
|
|
|
image 'python:3.9'
|
2021-11-04 10:42:53 +01:00
|
|
|
args '--user 0:0'
|
2021-11-03 16:26:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
steps {
|
2021-11-04 10:41:28 +01:00
|
|
|
sh 'whoami'
|
2021-11-04 10:50:44 +01:00
|
|
|
sh 'pip install .[all] --progress-bar off'
|
2021-11-03 16:26:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2021-11-04 09:55:58 +01:00
|
|
|
}
|