summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Bettis <jbettis@google.com>2021-11-02 09:54:14 -0600
committerCommit Bot <commit-bot@chromium.org>2021-11-04 16:39:42 +0000
commit21ac915e37dad98a3744e29e86363624e5739ede (patch)
tree2f0646e12ba3c84176f0d6ebcf2f8b9a5dfb5af4
parentf2ab481b463a847b14c29791881ff2a3fc4e17a6 (diff)
downloadchrome-ec-21ac915e37dad98a3744e29e86363624e5739ede.tar.gz
gitlab: Add the pyyaml package
Install the pyyaml package, it was required by zmake, and installed by pip when you installed zmake. Now it is still needed, but not discovered by pip, so it needs to be installed explicitly. See https://gitlab.com/zephyr-ec/ec/-/jobs/1737467792 BRANCH=None BUG=b:193815337 TEST=Build locally in docker Change-Id: Ie467b3f1ddc338b387c6ccae1f202c52734e55e2 Signed-off-by: Jeremy Bettis <jbettis@google.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3257867 Tested-by: Jeremy Bettis <jbettis@chromium.org> Auto-Submit: Jeremy Bettis <jbettis@chromium.org> Commit-Queue: Yuval Peress <peress@google.com> Reviewed-by: Yuval Peress <peress@google.com>
-rw-r--r--.gitlab-ci.yml1
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 277526ba5f..4a0de83099 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -46,6 +46,7 @@ before_script:
- ln -s "$(pwd)" "${MODULES_DIR}/ec"
- python3 -V # Print out python version for debugging
- python3 -m pip install zephyr/zmake --user
+ - python3 -m pip install pyyaml
- export BUILD_DIR=build
- export ZEPHYR_DIR=/zephyr
- export PATH="$PATH:$HOME/.local/bin"