From 4e8183abbc4f473f19d5a1c2ec2e17820387334a Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sun, 4 Apr 2021 08:53:54 +1200 Subject: gitlab: Add lazor build We currently have only volteer building on gitlab. Since trogdor is under active development, add a build for that as well. BUG=b:178731498 BRANCH=none TEST=pass at https://gitlab.com/zephyr-ec/ec/-/pipelines/281073991 Signed-off-by: Simon Glass Change-Id: I0526a83596825e8859ea74fad555c37bddf2fcc2 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2803996 Reviewed-by: Jack Rosenthal --- .gitlab-ci.yml | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) (limited to '.gitlab-ci.yml') diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8fe2e155d7..2462b1bc4f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -41,17 +41,24 @@ before_script: - export ZEPHYR_DIR=/zephyr - export PATH="$PATH:$HOME/.local/bin" -test: +volteer: script: - echo "It works" + - zmake --zephyr-base "${ZEPHYR_BASE}" --modules-dir "${MODULES_DIR}" + -l DEBUG configure -b -B "${BUILD_DIR}/volteer" -t zephyr + zephyr/projects/volteer/volteer + - ls "${BUILD_DIR}/volteer" "${BUILD_DIR}/volteer/output" + artifacts: + paths: + - build/volteer/output/* + expire_in: 1 week -run: +lazor: script: - zmake --zephyr-base "${ZEPHYR_BASE}" --modules-dir "${MODULES_DIR}" - -l DEBUG configure -b -B "${BUILD_DIR}/vol" -t zephyr - zephyr/projects/volteer/volteer - - ls "${BUILD_DIR}/vol" "${BUILD_DIR}/vol/output" + -l DEBUG configure -b -B "${BUILD_DIR}/lazor" -t zephyr + zephyr/projects/trogdor/lazor + - ls "${BUILD_DIR}/lazor" "${BUILD_DIR}/lazor/output" artifacts: paths: - - build/vol/output/* + - build/lazor/output/* expire_in: 1 week -- cgit v1.2.1