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:
parent
842b56be2f
commit
c9fb3c5746
|
@ -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'
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue