2021-10-26 08:07:13 -04:00
|
|
|
pipeline {
|
2021-10-26 10:00:22 -04:00
|
|
|
agent any
|
2021-10-26 08:07:13 -04:00
|
|
|
stages {
|
|
|
|
|
stage('Test') {
|
2021-10-26 10:00:22 -04:00
|
|
|
agent {
|
|
|
|
|
docker { image 'python:3.10-alpine3.14' }
|
|
|
|
|
}
|
2021-10-26 08:07:13 -04:00
|
|
|
steps {
|
2021-10-26 10:00:22 -04:00
|
|
|
sh 'whoami'
|
2021-10-26 09:46:11 -04:00
|
|
|
sh 'pwd'
|
|
|
|
|
sh 'pip3 install -U pip'
|
2021-10-26 08:20:22 -04:00
|
|
|
sh 'pip3 install wheel nox nox_poetry poetry'
|
|
|
|
|
sh 'nox -x'
|
2021-10-26 08:07:13 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|