summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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