mirror of
https://github.com/waku-org/nwaku.git
synced 2025-02-25 05:15:53 +00:00
ci: disable Nim compiler colors
Because they make things unreadable. Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
c0f5063e07
commit
b9434052ef
@ -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',
|
||||
|
@ -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(' ')
|
||||
)
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user