Fixed docker issues
Some checks failed
ci-tests/simple-python-pyinstaller-tapp/pipeline/head There was a failure building this commit

This commit is contained in:
2022-01-19 15:37:49 +02:00
parent 1fc300f844
commit 7e7d881568

4
Jenkinsfile vendored
View File

@@ -36,7 +36,7 @@ pipeline {
steps { steps {
dir(path: env.BUILD_ID) { dir(path: env.BUILD_ID) {
unstash(name: 'compiled-results') unstash(name: 'compiled-results')
sh "docker run --rm -v ${VOLUME} ${IMAGE} 'pyinstaller -F add2vals.py'" sh "docker run --rm -v ${VOLUME} ${IMAGE} 'pyinstaller -F add2vals.py' "
} }
} }
post { post {
@@ -47,4 +47,4 @@ pipeline {
} }
} }
} }
} }