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 c0f5063e07
commit b9434052ef
No known key found for this signature in database
GPG Key ID: 09AA5403E54D9931
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(' ')
)
}