- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Docker 容器进行构建,$HOME
变量当然指向 Jenkins 用户主目录 (/home/jenkins
),这可能会导致问题,例如如果作业并行运行并尝试将内容写入 $HOME
等
在脚本 Jenkinsfile 中全局将 $HOME
设置为 ${env.WORKSPACE}
所需的方法是什么?
将所有 shell 步骤包装在 withEnv(["HOME=${WORKSPACE}]){ ... }
中似乎很奇怪。
这是脚本化流水线的缩小版本,它处理多个 Docker 镜像并使用 withEnv
包装 $HOME
的设置:
#!groovy
DOCKER_IMAGES = ["python:3.5.0", "python:3.6.5"]
def get_stages(docker_image) {
stages = {
docker.image(docker_image).inside {
// The following line causes a weird issue, where pip tries to
// install into /usr/local/... instead of the virtual env.
// Any help figuring out what's happening is appreciated.
//
// def PYTHON_VENV = docker_image.replaceAll('[:.]', '') + 'venv'
//
// So we set it to 'venv' for all parallel builds now
def PYTHON_VENV = 'venv'
withEnv(["HOME=${env.WORKSPACE}"]){
stage("${docker_image}") {
echo "Running in ${docker_image}"
}
stage("Prepare") {
sh "echo 'Home is set to:' $HOME"
sh "echo 'Workspace is:' ${env.WORKSPACE}"
sh "rm -rf ${PYTHON_VENV}"
sh "python -m venv ${PYTHON_VENV}"
sh """
. ${PYTHON_VENV}/bin/activate
pip install -U pip setuptools wheel
"""
}
}
}
}
return stages
}
node('master') {
cleanWs()
def stages = [:]
for (int i = 0; i < DOCKER_IMAGES.size(); i++) {
def docker_image = DOCKER_IMAGES[i]
stages[docker_image] = get_stages(docker_image)
}
parallel stages
}
最佳答案
Wrapping all shell steps in withEnv(["HOME=${WORKSPACE}]){ ... } seems quite odd.
当然这看起来很奇怪,但它设置了容器的工作目录,并进行了卷绑定(bind)以将必要的文件传输到容器中。您可以在日志中看到它...
docker run -t -d -u 996:994 -w/var/lib/jenkins/workspace/python-test-pipeline@2 -v/var/lib/jenkins/workspace/python-test- pipeline@2:/var/lib/jenkins/workspace/python-test-pipeline@2:rw,z -v/var/lib/jenkins/workspace/python-test-pipeline@2@tmp:/var/lib/ Jenkins /工作区/python-test-pipeline@2@tmp:rw,z -e ******** -e ******** -e ******** -e * ******* -e ******** -e ******** -e ******** -e ******** -e * ******* -e ******** -e ******** -e ******** -e ******** -e * ******* -e ******** -e ******** -e ******** -e ******** -e * ******* -e ******** -e ******** -e ******** -e ******** -e * ******* -e ******** -e ******** -e ******** -e ******** -e * ******* -e ******** -e ******** -e ******** python: Alpine 猫
关于Jenkinsfile(脚本化)将 shell $HOME 设置为 ${env.WORKSPACE},我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50446345/
为什么 Eclipse 在构建 Android 项目时会陷入无限循环,用于构建工作区...和(重新)构建工作区...和(重新)构建工作区... 这是一个已知的错误吗? 摆脱这个循环的正确方法是什么?
当我排队构建时,我遇到了这个问题。构建因错误而死亡 The path C:\[Path]\Sources is already mapped in workspace [Server Name]. s
本文整理了Java中org.brixcms.workspace.Workspace.getId()方法的一些代码示例,展示了Workspace.getId()的具体用法。这些代码示例主要来源于Gith
本文整理了Java中org.brixcms.workspace.Workspace.setAttribute()方法的一些代码示例,展示了Workspace.setAttribute()的具体用法。这
本文整理了Java中org.brixcms.workspace.Workspace.getAttribute()方法的一些代码示例,展示了Workspace.getAttribute()的具体用法。这
我有一个工作区 A,其中在计算机 A 上 checkout 了文件。现在我想继续在计算机 B 上进行开发。我从计算机 A 复制文件,并创建一个新的工作区 B 并映射到复制的文件。 现在 Visual
我正在用 gatsby 创建一个新项目gatsby new YourProjectName2 https://github.com/Vagr9K/gatsby-advanced-starter并得到一
我想切换构建节点并将整个工作区转移到新节点。 node('node1') { ... stash 'my_workspace' } node('node2') { ...
本文整理了Java中org.protege.editor.core.ui.workspace.Workspace.getEditorKit()方法的一些代码示例,展示了Workspace.getEdi
本文整理了Java中org.protege.editor.core.ui.workspace.Workspace.getViewManager()方法的一些代码示例,展示了Workspace.getV
本文整理了Java中org.protege.editor.core.ui.workspace.Workspace.getStatusArea()方法的一些代码示例,展示了Workspace.getSt
本文整理了Java中org.protege.editor.core.ui.workspace.Workspace.save()方法的一些代码示例,展示了Workspace.save()的具体用法。这些
本文整理了Java中org.protege.editor.core.ui.workspace.Workspace.installLookAndFeelMenu()方法的一些代码示例,展示了Worksp
本文整理了Java中org.protege.editor.core.ui.workspace.Workspace.setLayout()方法的一些代码示例,展示了Workspace.setLayout
本文整理了Java中org.protege.editor.core.ui.workspace.Workspace.changeFontSize()方法的一些代码示例,展示了Workspace.chan
本文整理了Java中org.protege.editor.core.ui.workspace.Workspace.getTitle()方法的一些代码示例,展示了Workspace.getTitle()
本文整理了Java中org.protege.editor.core.ui.workspace.Workspace.initialiseExtraMenuItems()方法的一些代码示例,展示了Work
本文整理了Java中org.protege.editor.core.ui.workspace.Workspace.add()方法的一些代码示例,展示了Workspace.add()的具体用法。这些代码
本文整理了Java中org.protege.editor.core.ui.workspace.Workspace.showResultsView()方法的一些代码示例,展示了Workspace.sho
本文整理了Java中org.protege.editor.core.ui.workspace.Workspace.adjustBorder()方法的一些代码示例,展示了Workspace.adjust
我是一名优秀的程序员,十分优秀!