From 575bfca9f10a80922f4d1833f45e7e274149dcc0 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sat, 2 Aug 2025 23:45:09 +1200 Subject: [PATCH] CI: Drop the unnecessary rule in SJG_LAB The rules are enough to handle the results logic. Drop the redundant checks at the start of the bash script. Signed-off-by: Simon Glass --- .gitlab-ci.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5d750beb5b9..48926f29576 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -632,11 +632,6 @@ coreboot test.py: # Environment: # SRC - source tree # OUT - output directory for builds - - if [[ -n ${SJG_LAB} ]]; then - if [[ "${SJG_LAB}" != "${ROLE}" && "${SJG_LAB}" != "1" ]]; then - exit 0; - fi; - fi - export SRC="$(pwd)" - export OUT="${SRC}/build/${ROLE}" - export OUT_EXTRA="${SRC}/build/${ROLE}_extra"