diff --git a/Jenkinsfile b/Jenkinsfile index 10f069d..05da02b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,11 +1,12 @@ pipeline { - agent { - docker { image 'python:3.10-alpine3.14' } - } + agent any stages { stage('Test') { + agent { + docker { image 'python:3.10-alpine3.14' } + } steps { - sh 'echo $USER' + sh 'whoami' sh 'pwd' sh 'pip3 install -U pip' sh 'pip3 install wheel nox nox_poetry poetry'