Commit f0db8395b4dcd415288c8035bc71bbf1b44e0346

Authored by Tom Rini
1 parent 9f7bda1043

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>

Showing 1 changed file with 3 additions and 1 deletions Side-by-side Diff

... ... @@ -22,7 +22,6 @@
22 22 - . /tmp/venv/bin/activate
23 23 - pip install pytest==2.8.7
24 24 - pip install python-subunit
25   - - pip install pyelftools
26 25 - grub-mkimage -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
27 26 - grub-mkimage -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
28 27 - mkdir ~/grub2-arm
... ... @@ -83,6 +82,9 @@
83 82 tags: [ 'all' ]
84 83 stage: world build
85 84 script:
  85 + - virtualenv /tmp/venv
  86 + - . /tmp/venv/bin/activate
  87 + - pip install pyelftools
86 88 - ret=0;
87 89 ./tools/buildman/buildman -P -E aarch64 || ret=$?;
88 90 if [[ $ret -ne 0 && $ret -ne 129 ]]; then