From patchwork Mon Aug 31 09:21:21 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Kiszka X-Patchwork-Id: 11745997 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 73E13618 for ; Mon, 31 Aug 2020 09:21:29 +0000 (UTC) Received: from web01.groups.io (web01.groups.io [66.175.222.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 4DF812073A for ; Mon, 31 Aug 2020 09:21:29 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=lists.cip-project.org header.i=@lists.cip-project.org header.b="nIl8Mj4G" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 4DF812073A Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=siemens.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=bounce+64572+5337+4520428+8129116@lists.cip-project.org X-Received: by 127.0.0.2 with SMTP id T8EjYY4521763x4ERJisOq7l; Mon, 31 Aug 2020 02:21:29 -0700 X-Received: from thoth.sbs.de (thoth.sbs.de [192.35.17.2]) by mx.groups.io with SMTP id smtpd.web11.49655.1598865687016356714 for ; Mon, 31 Aug 2020 02:21:27 -0700 X-Received: from mail2.sbs.de (mail2.sbs.de [192.129.41.66]) by thoth.sbs.de (8.15.2/8.15.2) with ESMTPS id 07V9LOGE001624 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Mon, 31 Aug 2020 11:21:24 +0200 X-Received: from md1f2u6c.ad001.siemens.net ([167.87.39.104]) by mail2.sbs.de (8.15.2/8.15.2) with ESMTP id 07V9LMgQ030412; Mon, 31 Aug 2020 11:21:23 +0200 From: "Jan Kiszka" To: cip-dev@lists.cip-project.org Cc: Nobuhiro Iwamatsu Subject: [cip-dev] [isar-cip-core][PATCH 2/3] ci: Do not try to deploy the security image Date: Mon, 31 Aug 2020 11:21:21 +0200 Message-Id: <83d75816ceb5f74802ac0cec5292bf257ffc2d48.1598865682.git.jan.kiszka@siemens.com> In-Reply-To: References: MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: cip-dev@lists.cip-project.org List-Id: Mailing-List: list cip-dev@lists.cip-project.org; contact cip-dev+owner@lists.cip-project.org Delivered-To: mailing list cip-dev@lists.cip-project.org Reply-To: cip-dev@lists.cip-project.org X-Gm-Message-State: 29ChwelMP4nUDfZXWx77oeFhx4520428AA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lists.cip-project.org; q=dns/txt; s=20140610; t=1598865689; bh=m8J3IN3QqXa89TwBoAsg0H7Wxm1cp4d/uleH4Qn0cxM=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=nIl8Mj4G+VgurbcNVTAv8LQtzu5O5pOwQm8vj+wxphsqKTcfUA3OE1xUauLM2ty/BY8 A/E/8bB3gvzrjhXKsbtH07h5BLthOT2xL966eAMsPnNqrfrjaWD2tjH+AWH3Vva3tUmlm 7IfM4QgOjVBqGuxoO+8GMcvDKvudWXC7zGM= From: Jan Kiszka This is not used, and the image is not available, so it breaks the build. Fixes: 3510f8a66f80 ("ci: Rewrite using extends") Signed-off-by: Jan Kiszka Reviewed-by: Nobuhiro Iwamatsu --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cd25437..0b0a771 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,6 +7,7 @@ variables: use_rt: enable targz: enable dtb: none + deploy: enable stages: - build @@ -30,7 +31,7 @@ default: - if [ "${extention}" != "base" ]; then base_yaml="${base_yaml}:kas/opt/${extention}.yml"; fi; - if [ "${targz}" = "enable" ]; then base_yaml="${base_yaml}:kas/opt/targz-img.yml"; fi; - kas build ${base_yaml} - - scripts/deploy-cip-core.sh ${release} ${target} ${extention} ${dtb} + - if [ "${deploy}" = "enable" ]; then scripts/deploy-cip-core.sh ${release} ${target} ${extention} ${dtb}; fi # base image build:simatic-ipc227e-base: @@ -68,6 +69,7 @@ build:qemu-amd64-base: extention: security use_rt: disable targz: disable + deploy: disable # test build:simatic-ipc227e-test: