test/Jenkinsfile

7 lines
204 B
Plaintext
Raw Normal View History

2022-07-29 13:28:34 +02:00
node {
// This displays colors using the 'xterm' ansi color map.
ansiColor('xterm') {
// Just some echoes to show the ANSI color.
stage "\u001B[31mI'm Red\u001B[0m Now not"
}
}