summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-04-04 08:53:54 +1200
committerCommit Bot <commit-bot@chromium.org>2021-04-05 23:11:25 +0000
commit4e8183abbc4f473f19d5a1c2ec2e17820387334a (patch)
treebb3676d8f849191bcc59c33514d3a1c4c927aad7
parent68243170548b3e08f50977a4d140f6344732b820 (diff)
downloadchrome-ec-stabilize-13895.B-main.tar.gz
gitlab: Add lazor buildstabilize-13895.B-main
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 <sjg@chromium.org> Change-Id: I0526a83596825e8859ea74fad555c37bddf2fcc2 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2803996 Reviewed-by: Jack Rosenthal <jrosenth@chromium.org>
-rw-r--r--.gitlab-ci.yml21
1 files changed, 14 insertions, 7 deletions
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