如何在Jenkins管道中获得阶段输出?

sf6xfgos  于 2023-03-29  发布在  Jenkins
关注(0)|答案(1)|浏览(210)

这似乎是一个奇怪的问题,因为我找不到任何其他人也有同样问题的线索-事实上,有更多的问题是关于 * 抑制 * 输出的。所以我可能错过了一些基本的东西,但我不确定它可能是什么。
我已经使用多分支管道在Jenkins中创建了一个非常基本的构建。Jenkins在docker中运行,构建在内置节点上运行。构建成功地检索到更改的分支,找到Jenkins文件,并(似乎)运行它。但是,没有阶段信息或其他输出出现。
下面是控制台输出的相关部分:

...
Obtained Jenkinsfile from 27aea098fcacbbac2125d0aa18457b8612bcbb39
[Pipeline] Start of Pipeline
[Pipeline] End of Pipeline
Finished: SUCCESS

当前的流水线只是从jenkins文档中复制而来:

pipeline {
    agent any

    stages {
        stage('Build') {
            steps {
                echo 'Building..'
            }
        }
        stage('Test') {
            steps {
                echo 'Testing..'
            }
        }
        stage('Deploy') {
            steps {
                echo 'Deploying....'
            }
        }
    }
    post {
        always {
            echo 'This will always run'
        }
        success {
            echo 'This will run only if successful'
        }
        failure {
            echo 'This will run only if failed'
        }
        unstable {
            echo 'This will run only if the run was marked as unstable'
        }
        changed {
            echo 'This will run only if the state of the Pipeline has changed'
            echo 'For example, if the Pipeline was previously failing but is now successful'
        }
    }
}

我已经验证了这个管道实际上是正在使用的管道(通过引入语法错误并看到它失败)。我已经尝试了shell命令vs echo,例如,sh 'echo "Building.."'-没有变化。我已经尝试使用返回非零错误代码的命令-没有变化。我找不到任何可能会抑制显示的配置选项。
关于我做错了什么,误解了什么,或者我可以做些什么来调试它,有什么建议吗?

v7pvogib

v7pvogib1#

这不是一个解释,但是通过切换docker镜像,问题就消失了。这个问题发生在bitnami/jenkins:2上,但是在使用jenkins/jenkins时没有发生。
我很想知道为什么会发生这种情况,因为我相信bitnami jenkins工作得很好,但切换肯定解决了我们的问题。

相关问题