From b9434052ef82156bf4383359fde0136dbea64bc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Fri, 22 Jul 2022 13:45:47 +0200 Subject: [PATCH] ci: disable Nim compiler colors MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Because they make things unreadable. Signed-off-by: Jakub SokoĊ‚owski --- ci/Jenkinsfile.prs | 7 ++++++- ci/Jenkinsfile.release | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ci/Jenkinsfile.prs b/ci/Jenkinsfile.prs index 41fa2dd13..9e69d6d30 100644 --- a/ci/Jenkinsfile.prs +++ b/ci/Jenkinsfile.prs @@ -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', diff --git a/ci/Jenkinsfile.release b/ci/Jenkinsfile.release index d2dd256b1..6da215a23 100644 --- a/ci/Jenkinsfile.release +++ b/ci/Jenkinsfile.release @@ -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(' ') ) }