From patchwork Wed Jul 24 17:14:56 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Rini X-Patchwork-Id: 1136458 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=konsulko.com Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 45v26C4wdvz9s3l for ; Thu, 25 Jul 2019 03:15:15 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id 5AF82C21D72; Wed, 24 Jul 2019 17:15:07 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id BA475C21C27; Wed, 24 Jul 2019 17:15:05 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id A74C6C21C2F; Wed, 24 Jul 2019 17:15:03 +0000 (UTC) Received: from mail-yw1-f66.google.com (mail-yw1-f66.google.com [209.85.161.66]) by lists.denx.de (Postfix) with ESMTPS id AE14AC21C27 for ; Wed, 24 Jul 2019 17:15:01 +0000 (UTC) Received: by mail-yw1-f66.google.com with SMTP id m16so18340583ywh.12 for ; Wed, 24 Jul 2019 10:15:01 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id; bh=jdEj9YKhsMTjejbu53E0yaWYAPwPmzqiznApiLUs6pk=; b=YJinitVARTqGvQcvqSOxw8T0g2xUcSrTMoSatgDT1wo6OiFIp0maYIJ5pnR1TH45/Y d9KaHqsl5yToCLWEfa6ryTl9pkTw+lc8rmoFULdWmuZrK/EKoqyHsrvLIanTppJRdnIN ipf33M+pAtI+VUtjmId/Csd6VOCZT+kalSTLkobh90MEzbMNeLJRENcVwGcBNReEjgpd LEyGHIf7KObzrjgYHJZnfu4SsaVB5n6p4/jIV8aU4NFUer8cavTI2hnRi+FG5NcGt+ip VvUDXga9TLk5OeN/NSlNTuwxMLBCAWuk5jUBKh+AJF9N9M6CG3M2iiL9JaD6fxdsrPr7 DR4Q== X-Gm-Message-State: APjAAAWVNYDuXV0ltMlg9gjc5tmaVbxCZRIBKAJSUo04PQToOClFVEr3 a+cgyapwHmXNuE1uMfioIH6pwXA= X-Google-Smtp-Source: APXvYqz452WbLa7cDYnYBLdxyabOjVz1hAQWTM69E7Rk5B5sjVfs5Bpk+15AIBBYmTenXlr34kVY8Q== X-Received: by 2002:a81:b60c:: with SMTP id u12mr47568577ywh.79.1563988499911; Wed, 24 Jul 2019 10:14:59 -0700 (PDT) Received: from bill-the-cat.local (cpe-2606-A000-1401-82DE-6132-7A06-8704-980.dyn6.twc.com. [2606:a000:1401:82de:6132:7a06:8704:980]) by smtp.gmail.com with ESMTPSA id 207sm11027701ywo.90.2019.07.24.10.14.59 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 24 Jul 2019 10:14:59 -0700 (PDT) From: Tom Rini To: u-boot@lists.denx.de Date: Wed, 24 Jul 2019 13:14:56 -0400 Message-Id: <1563988496-16904-1-git-send-email-trini@konsulko.com> X-Mailer: git-send-email 2.7.4 Subject: [U-Boot] [PATCH] gitlab-ci: Add pyelftools to the binman testsuite section X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" We need pyelftools here to run rather than skip some tests. Signed-off-by: Tom Rini Reviewed-by: Simon Glass --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e166d8f74a68..bd63708b987d 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";