Adding Jenkinsfile

Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
2021-10-26 08:07:13 -04:00
parent bd5d9e23db
commit 1720048f12

14
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,14 @@
pipeline {
agent {
docker { image 'python:3.10-alpine3.14' }
}
stages {
stage('Test') {
steps {
pip3 install --upgrade pip
pip3 install wheel nox nox_poetry poetry
nox -x
}
}
}
}