1.jenkins 控制台输出带颜色
解决办法:构建环境勾选Color ANSI Console Output
2.如果Jenkins job 是pipeline没有构建环境可以启用ansiColor 插件,可以在项目的 Jenkinsfile 文件配置启用AnsiColor 插件
pipeline {
agent any
options {
ansiColor('xterm') // 启用 AnsiColor 插件
}
stages {
stage('Build') {
steps {
// 构建步骤
}
}
stage('Test') {
steps {
// 测试步骤
}
}
stage('Deploy') {
steps {
// 部署步骤
}
}
}
}
-----持续更新中