chore: keycard mocked lib is false by default

Disabling to build Linux artefacts with Keycard mock lib, as it may be the cause of tests being stuck
This commit is contained in:
Anastasiya Semenkevich 2023-11-21 19:10:17 +03:00 committed by Anastasiya
parent 842b56be2f
commit c9fb3c5746

View File

@ -34,7 +34,7 @@ pipeline {
booleanParam( booleanParam(
name: 'USE_MOCKED_KEYCARD_LIB', name: 'USE_MOCKED_KEYCARD_LIB',
description: 'Decides whether the mocked status-keycard-go library is built.', description: 'Decides whether the mocked status-keycard-go library is built.',
defaultValue: getMockedKeycardLibDefault() defaultValue: false
) )
} }
@ -130,7 +130,3 @@ def getArch() {
if (tokens.contains(arch)) { return arch } if (tokens.contains(arch)) { return arch }
} }
} }
def getMockedKeycardLibDefault() {
return utils.isReleaseBuild() ? 'false' : 'true'
}