Files
plex-playlist-old/Jenkinsfile
Cliff Hill f3253cd556 More stuff.
Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
2021-10-26 13:19:37 -04:00

21 lines
463 B
Groovy

pipeline {
agent {
docker {
image 'python:3.10-alpine3.14'
args '--name playlist-test'
}
}
stages {
stage('Test') {
steps {
sh 'echo ${USER}'
sh 'set'
sh 'pip3 install -U pip'
sh 'pip3 install wheel nox nox_poetry poetry'
sh 'nox --version'
sh 'poetry --version'
}
}
}
}