diff options
author | Tom Rini | 2019-07-24 13:14:56 -0400 |
---|---|---|
committer | Tom Rini | 2019-07-24 16:26:15 -0400 |
commit | 848121746768433c0d0a024ca1301f262b22e540 (patch) | |
tree | d9970bda8c4cf828195223fdba7b2d1a739dbb76 | |
parent | f9b65c76b4828efbf8093c6b02bee5af0045b98b (diff) |
gitlab-ci: Add pyelftools to the binman testsuite section
We need pyelftools here to run rather than skip some tests.
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | .gitlab-ci.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2edc3802ad0..b919eaf0c10 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -172,6 +172,9 @@ Run binman and dtoc testsuite: tags: [ 'all' ] stage: testsuites script: + - virtualenv /tmp/venv + - . /tmp/venv/bin/activate + - pip install pyelftools - export UBOOT_TRAVIS_BUILD_DIR=`cd .. && pwd`/.bm-work/sandbox_spl; ./tools/buildman/buildman -P sandbox_spl && export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt"; |