7 lines
204 B
Groovy
7 lines
204 B
Groovy
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"
|
|
}
|
|
} |