Files
plex-playlist-old/Jenkinsfile
T

19 lines
380 B
Groovy
Raw Normal View History

2021-10-26 08:07:13 -04:00
pipeline {
2021-10-26 10:15:13 -04:00
agent {
docker {
2021-10-26 10:36:48 -04:00
image 'python:3.10-alpine3.14'
args '--name playlist-test'
2021-10-26 10:15:13 -04:00
}
}
2021-10-26 08:07:13 -04:00
stages {
stage('Test') {
steps {
2021-10-26 10:38:01 -04:00
sh 'sudo docker exec playlist-test /bin/bash'
sh 'pwd'
2021-10-26 10:36:48 -04:00
sh 'uname -a'
sh 'nox --version'
2021-10-26 08:07:13 -04:00
}
}
}
}