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
1 changed files with 2 additions and 6 deletions

View File

@ -34,7 +34,7 @@ pipeline {
booleanParam(
name: 'USE_MOCKED_KEYCARD_LIB',
description: 'Decides whether the mocked status-keycard-go library is built.',
defaultValue: getMockedKeycardLibDefault()
defaultValue: false
)
}
@ -129,8 +129,4 @@ def getArch() {
for (def arch in ['x86_64', 'aarch64']) {
if (tokens.contains(arch)) { return arch }
}
}
def getMockedKeycardLibDefault() {
return utils.isReleaseBuild() ? 'false' : 'true'
}
}