Hi,

On 10/04/2017 10:48 AM, Jan Kiszka wrote:
On 2017-10-04 10:43, [ext] [email protected] wrote:
From: Claudius Heine <[email protected]>

This way it can be handled more flexibly and the build time should be
shorter.

Why should the build time be shorter?

Should I anwser here or should I improve my commit message?

Short anwser. Only the needed dependencies are installed not all of them all the time (i586 build etc.). Also for some reason java was downloaded an installed on every build. With this patch no longer.

Maybe its possible to do this via the travis build matrix. If you prefer it.

Cheers,
Claudius


Jan


Signed-off-by: Claudius Heine <[email protected]>
---
  .travis-build.sh | 35 +++++++++++++++++++++++++++++++++--
  .travis.yml      |  6 ------
  2 files changed, 33 insertions(+), 8 deletions(-)

diff --git a/.travis-build.sh b/.travis-build.sh
index 76629a8..2e00edc 100755
--- a/.travis-build.sh
+++ b/.travis-build.sh
@@ -18,6 +18,31 @@ else
      TARGET_EFFECTIVE="${PARAM:-"${TARGET}"}"
  fi
+install_common_deps()
+{
+    sudo apt-get install gcc-multilib gnu-efi libpci-dev
+}
+
+install_native_deps()
+{
+    sudo apt-add-repository \
+         'deb http://archive.ubuntu.com/ubuntu xenial universe'
+    sudo apt-get update -qq
+    sudo apt-get install --no-install-recommends \
+         --target-release xenial libcmocka-dev
+}
+
+install_i586_deps()
+{
+    sudo apt-get install --no-install-recommends \
+         libz-dev:i386
+    sudo apt-add-repository \
+         'deb http://archive.ubuntu.com/ubuntu xenial universe'
+    sudo apt-get update -qq
+    sudo apt-get install --no-install-recommends \
+         --target-release xenial libcmocka-dev:i386
+}
+
  prepare_build()
  {
      autoreconf -fi
@@ -48,6 +73,8 @@ install_cppcheck()
case "$TARGET_EFFECTIVE" in
      native)
+        install_common_deps
+        install_native_deps
          prepare_build
          enter_build
          ../configure
@@ -55,8 +82,8 @@ case "$TARGET_EFFECTIVE" in
          ;;
i586)
-        sudo apt-get install --no-install-recommends \
-            --target-release xenial libcmocka-dev:i386
+        install_common_deps
+        install_i586_deps
          prepare_build
          enter_build
          ../configure --with-gnuefi-lib-dir=/usr/lib32 CFLAGS=-m32 \
@@ -65,6 +92,8 @@ case "$TARGET_EFFECTIVE" in
          ;;
cppcheck)
+       install_common_deps
+       install_native_deps
          echo "Building and installing cppcheck..."
          if ! install_cppcheck >cppcheck_build.log 2>&1
          then
@@ -103,6 +132,8 @@ case "$TARGET_EFFECTIVE" in
              $enable $suppress $cpp_conf $includes .
          ;;
      coverity_prepare)
+        install_common_deps
+        install_native_deps
          prepare_build
          enter_build
          ../configure
diff --git a/.travis.yml b/.travis.yml
index af6e354..69ad4c4 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -25,12 +25,6 @@ sudo: required
  before_install:
        - echo -n | openssl s_client -connect scan.coverity.com:444 | sed -ne 
'/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a 
/etc/ssl/certs/ca-certificates.crt
-install:
-  - sudo apt-get install gcc-multilib gnu-efi libpci-dev libz-dev:i386
-  - sudo apt-add-repository 'deb http://archive.ubuntu.com/ubuntu xenial 
universe'
-  - sudo apt-get update -qq
-  - sudo apt-get install --no-install-recommends --target-release xenial 
libcmocka-dev
-
  addons:
    coverity_scan:
      project:



--
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-54 Fax: (+49)-8142-66989-80 Email: [email protected]

--
You received this message because you are subscribed to the Google Groups "EFI Boot 
Guard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/efibootguard-dev/7b6d72d9-c3de-cc63-7620-c81684ed1de5%40siemens.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to