Skip to content

Commit 4be5d56

Browse files
LeHackmbolivar-nordic
authored andcommitted
[nrf noup] ci: Run all sanitychecks on every PR using zephyr compiler.
From now all Zephyr PRs will execute all sanitycheck tests using. Additionally we will use the zephyr compiler for non-nrf sanitychecks. Signed-off-by: Łukasz Hejnak <[email protected]> (cherry picked from commit b645105) Signed-off-by: Martí Bolívar <[email protected]>
1 parent 479eb28 commit 4be5d56

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

Jenkinsfile

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -179,13 +179,11 @@ pipeline {
179179
}
180180
TestExecutionList = TestExecutionList.plus(sanityCheckNRFStages)
181181

182-
if (lib_Main.getBuildType(CI_STATE.ZEPHYR) != 'PR') {
183-
def sanityCheckALLStages = OUTPUT_MAP.collectEntries {
184-
["SanityCheckALL\n${it.compiler}\n${it.set}" : generateParallelStageALL(it.set, it.compiler,
185-
AGENT_LABELS, DOCKER_REG, IMAGE_TAG, JOB_NAME, CI_STATE)]
186-
}
187-
TestExecutionList = TestExecutionList.plus(sanityCheckALLStages)
182+
def sanityCheckALLStages = OUTPUT_MAP.collectEntries {
183+
["SanityCheckALL\nzephyr\n${it.set}" : generateParallelStageALL(it.set, 'zephyr',
184+
AGENT_LABELS, DOCKER_REG, IMAGE_TAG, JOB_NAME, CI_STATE)]
188185
}
186+
TestExecutionList = TestExecutionList.plus(sanityCheckALLStages)
189187
}
190188

191189
println "TestExecutionList = $TestExecutionList"

0 commit comments

Comments
 (0)