From patchwork Mon Oct 14 07:49:07 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chris Paterson X-Patchwork-Id: 11188017 X-Patchwork-Delegate: chris.paterson2@renesas.com 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 7DE8E912 for ; Mon, 14 Oct 2019 08:04:57 +0000 (UTC) Received: from mail.linuxfoundation.org (mail.linuxfoundation.org [140.211.169.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 665592054F for ; Mon, 14 Oct 2019 08:04:57 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 665592054F Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=renesas.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=cip-dev-bounces@lists.cip-project.org Received: from mail.linux-foundation.org (localhost [127.0.0.1]) by mail.linuxfoundation.org (Postfix) with ESMTP id 287F52657; Mon, 14 Oct 2019 08:04:50 +0000 (UTC) X-Original-To: cip-dev@lists.cip-project.org Delivered-To: cip-dev@mail.linuxfoundation.org Received: from smtp2.linuxfoundation.org (smtp2.linux-foundation.org [172.17.192.36]) by mail.linuxfoundation.org (Postfix) with ESMTPS id A8F7F2548 for ; Mon, 14 Oct 2019 07:49:36 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from relmlie6.idc.renesas.com (relmlor2.renesas.com [210.160.252.172]) by smtp2.linuxfoundation.org (Postfix) with ESMTP id 125741DD99 for ; Mon, 14 Oct 2019 07:49:35 +0000 (UTC) X-IronPort-AV: E=Sophos;i="5.67,295,1566831600"; d="scan'208";a="28817220" Received: from unknown (HELO relmlir6.idc.renesas.com) ([10.200.68.152]) by relmlie6.idc.renesas.com with ESMTP; 14 Oct 2019 16:49:35 +0900 Received: from renesas-ubuntu18.ree.adwin.renesas.com (unknown [10.226.36.183]) by relmlir6.idc.renesas.com (Postfix) with ESMTP id 2D879418D17D; Mon, 14 Oct 2019 16:49:16 +0900 (JST) From: Chris Paterson To: cip-dev@lists.cip-project.org Date: Mon, 14 Oct 2019 08:49:07 +0100 Message-Id: <20191014074911.11161-2-chris.paterson2@renesas.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20191014074911.11161-1-chris.paterson2@renesas.com> References: <20191014074911.11161-1-chris.paterson2@renesas.com> X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on smtp2.linux-foundation.org Subject: [cip-dev] [PATCH linux-4.4.y-cip v2 2/3] gitlab-ci: Remove unofficial build configurations X-BeenThere: cip-dev@lists.cip-project.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: cip-dev-bounces@lists.cip-project.org Errors-To: cip-dev-bounces@lists.cip-project.org We should concentrate our testing on the offical configurations. We're essentially testing shmobile_defconfig anyway. Signed-off-by: Chris Paterson --- v1 -> v2 * No change .gitlab-ci.yml | 36 ------------------------------------ 1 file changed, 36 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ad8ec722b717..86ba8f31aafb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -279,39 +279,3 @@ build:x86_toshiba_defconfig: when: always paths: - output - -######################## -# Extra configurations # -######################## -build:arm_shmobile_defconfig: - stage: build - image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG - variables: - BUILD_ARCH: arm - CONFIG: shmobile_defconfig - CONFIG_LOC: intree - DEVICES: r8a7743-iwg20d-q7 r8a7745-iwg22d-sodimm r8a77470-iwg23s-sbc - DTBS: r8a7743-iwg20d-q7-dbcm-ca.dtb r8a7745-iwg22d-sodimm-dbhd-ca.dtb r8a77470-iwg23s-sbc.dtb - script: - - /opt/build_kernel.sh - artifacts: - name: "$CI_JOB_NAME" - when: always - paths: - - output - -test:arm_shmobile_defconfig: - stage: test - needs: ["build:arm_shmobile_defconfig"] - image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:test-$DOCKER_IMAGE_TAG - when: always - variables: - GIT_STRATEGY: none - TEST_TIMEOUT: 60 - script: - - /opt/submit_tests.sh - artifacts: - name: "$CI_JOB_NAME" - when: always - paths: - - output