diff options
author | Tom Rini <trini@konsulko.com> | 2019-07-18 07:28:36 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-07-18 11:30:03 -0400 |
commit | f0db8395b4dcd415288c8035bc71bbf1b44e0346 (patch) | |
tree | d38f4a075658101eba6615a041aa43a18e0783b1 /.gitlab-ci.yml | |
parent | 9f7bda104384465f8d63f39cab732ed28d8463cc (diff) | |
download | u-boot-f0db8395b4dcd415288c8035bc71bbf1b44e0346.tar.gz |
gitlab-ci: Move the pyelfutils section
We need this for building some 64bit ARM platforms, not for test.py
runs.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c24a7eaa62..e27d86f962 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,7 +22,6 @@ stages: - . /tmp/venv/bin/activate - pip install pytest==2.8.7 - pip install python-subunit - - pip install pyelftools - grub-mkimage -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd - grub-mkimage -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd - mkdir ~/grub2-arm @@ -83,6 +82,9 @@ build all 64bit ARM plaforms: tags: [ 'all' ] stage: world build script: + - virtualenv /tmp/venv + - . /tmp/venv/bin/activate + - pip install pyelftools - ret=0; ./tools/buildman/buildman -P -E aarch64 || ret=$?; if [[ $ret -ne 0 && $ret -ne 129 ]]; then |