我想通过JenkinsFile运行一个python文件或一组python命令。我该如何处理?
我运行下面的代码,而我的Jenkins Job从未完成。
pipeline {
agent { docker { image 'python:3.5.1' } }
stages {
stage('build') {
steps {
sh 'python --version'
}
}
}
}
答案 0 :(得分:0)
请按照以下步骤操作您的管道:
Pipeline
职位。pipeline {
agent { docker { image 'python:3.5.1' } }
stages {
stage('build') {
steps {
sh 'python --version'
}
}
}
}
sudo apt install docker.io
sudo systemctl enable docker
sudo systemctl start docker
docker --version
> Docker version 18.09.2, build 6247962
sudo usermod -a -G docker jenkins
success
和python version
。如有需要,随时提问。