ci: disable Nim compiler colors

Because they make things unreadable.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2022-07-22 13:45:47 +02:00
parent 03c7e38959
commit f6f2134fa7
2 changed files with 12 additions and 2 deletions

View File

@ -7,7 +7,12 @@ pipeline {
string(
name: 'NIMFLAGS',
description: 'Flags for Nim compilation.',
defaultValue: params.NIMFLAGS ?: '-d:disableMarchNative -d:insecure --parallelBuild:6'
defaultValue: params.NIMFLAGS ?: [
'--colors:off',
'-d:insecure',
'-d:disableMarchNative',
'--parallelBuild:6',
].join(' ')
)
string(
name: 'LOG_LEVEL',

View File

@ -33,7 +33,12 @@ pipeline {
string(
name: 'NIMFLAGS',
description: 'Flags for Nim compilation.',
defaultValue: params.NIMFLAGS ?: '-d:disableMarchNative -d:chronicles_colors:none -d:insecure',
defaultValue: params.NIMFLAGS ?: [
'--colors:off',
'-d:disableMarchNative',
'-d:chronicles_colors:none',
'-d:insecure',
].join(' ')
)
}