Jenkins 声明式管道 - SCM
Jenkins Declarative Pipeline - SCM
我正在学习一些 Jenkins 教程。我阅读的示例代码是
pipeline {
agent none
stages {
stage('Build') {
agent {
docker {
image 'python:2-alpine'
}
}
steps {
sh 'python -m py_compile sources/add2vals.py sources/calc.py'
}
}
stage('Test') {
agent {
docker {
image 'qnib/pytest'
}
}
steps {
sh 'py.test --verbose --junit-xml test-reports/results.xml sources/test_calc.py'
}
post {
always {
junit 'test-reports/results.xml'
}
}
}
stage('Deliver') {
agent {
docker {
image 'cdrx/pyinstaller-linux:python2'
}
}
steps {
sh 'pyinstaller --onefile sources/add2vals.py'
}
post {
success {
archiveArtifacts 'dist/add2vals'
}
}
}
}
}
所以基本上有Build
、Test
和Deliver
三个步骤。它们都使用不同的镜像来生成不同的容器。但是这个 Jenkins 作业被配置为使用 Git
作为 SCM
。
因此,如果此 Jenkins 构建是 运行,则表示该项目是在第一个容器上构建的。然后第二阶段是在另一个容器上测试项目,然后在第三个容器上交付。这个 Jenkins 作业如何确保这三个步骤按顺序对代码执行。
根据我的理解,每个阶段都需要执行git clone/git pull
,并且在阶段完成之前,需要git push
。
如果 SCM
IS 通过 Jenkins 配置为使用 Git
,我们是否需要包含 git clone/git pull', as well as 'git push' in the corresponding shell scripts(under
步骤 , or it it already taken into consideration by the
Jenkins 的 SCM` 功能?
谢谢
在这种情况下,您必须确保 QA 环境中的二进制文件必须与 UAT 环境和生产环境中的二进制文件相同。
为此,您必须使用工件存储库或注册表(Artifactory、Nexus、Docker Registry 等)将工件提升到生产环境。
请参阅此 link 并了解它是如何在管道中完成的。
我正在学习一些 Jenkins 教程。我阅读的示例代码是
pipeline {
agent none
stages {
stage('Build') {
agent {
docker {
image 'python:2-alpine'
}
}
steps {
sh 'python -m py_compile sources/add2vals.py sources/calc.py'
}
}
stage('Test') {
agent {
docker {
image 'qnib/pytest'
}
}
steps {
sh 'py.test --verbose --junit-xml test-reports/results.xml sources/test_calc.py'
}
post {
always {
junit 'test-reports/results.xml'
}
}
}
stage('Deliver') {
agent {
docker {
image 'cdrx/pyinstaller-linux:python2'
}
}
steps {
sh 'pyinstaller --onefile sources/add2vals.py'
}
post {
success {
archiveArtifacts 'dist/add2vals'
}
}
}
}
}
所以基本上有Build
、Test
和Deliver
三个步骤。它们都使用不同的镜像来生成不同的容器。但是这个 Jenkins 作业被配置为使用 Git
作为 SCM
。
因此,如果此 Jenkins 构建是 运行,则表示该项目是在第一个容器上构建的。然后第二阶段是在另一个容器上测试项目,然后在第三个容器上交付。这个 Jenkins 作业如何确保这三个步骤按顺序对代码执行。
根据我的理解,每个阶段都需要执行git clone/git pull
,并且在阶段完成之前,需要git push
。
如果 SCM
IS 通过 Jenkins 配置为使用 Git
,我们是否需要包含 git clone/git pull', as well as 'git push' in the corresponding shell scripts(under
步骤 , or it it already taken into consideration by the
Jenkins 的 SCM` 功能?
谢谢
在这种情况下,您必须确保 QA 环境中的二进制文件必须与 UAT 环境和生产环境中的二进制文件相同。 为此,您必须使用工件存储库或注册表(Artifactory、Nexus、Docker Registry 等)将工件提升到生产环境。 请参阅此 link 并了解它是如何在管道中完成的。