From patchwork Mon Aug 5 15:35:58 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chris Paterson X-Patchwork-Id: 11077219 X-Patchwork-Delegate: iwamatsu@nigauri.org Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id B1FE81395 for ; Mon, 5 Aug 2019 15:45:43 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id A377B1FF73 for ; Mon, 5 Aug 2019 15:45:43 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 97B592878E; Mon, 5 Aug 2019 15:45:43 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.2 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from mail.linuxfoundation.org (mail.linuxfoundation.org [140.211.169.12]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 1F114286F7 for ; Mon, 5 Aug 2019 15:45:42 +0000 (UTC) Received: from mail.linux-foundation.org (localhost [127.0.0.1]) by mail.linuxfoundation.org (Postfix) with ESMTP id 3A3AAFBD; Mon, 5 Aug 2019 15:45:42 +0000 (UTC) X-Original-To: cip-dev@lists.cip-project.org Delivered-To: cip-dev@mail.linuxfoundation.org Received: from smtp1.linuxfoundation.org (smtp1.linux-foundation.org [172.17.192.35]) by mail.linuxfoundation.org (Postfix) with ESMTPS id DDD47FBD for ; Mon, 5 Aug 2019 15:45:40 +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 smtp1.linuxfoundation.org (Postfix) with ESMTP id 0F4B882D for ; Mon, 5 Aug 2019 15:45:39 +0000 (UTC) X-IronPort-AV: E=Sophos;i="5.64,350,1559487600"; d="scan'208";a="23161452" Received: from unknown (HELO relmlir6.idc.renesas.com) ([10.200.68.152]) by relmlie6.idc.renesas.com with ESMTP; 06 Aug 2019 00:45:39 +0900 Received: from renesas-ubuntu18.ree.adwin.renesas.com (unknown [10.226.36.212]) by relmlir6.idc.renesas.com (Postfix) with ESMTP id 9C38A4008AB9; Tue, 6 Aug 2019 00:45:38 +0900 (JST) From: Chris Paterson To: cip-dev@lists.cip-project.org Date: Mon, 5 Aug 2019 16:35:58 +0100 Message-Id: <20190805153558.5926-2-chris.paterson2@renesas.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190805153558.5926-1-chris.paterson2@renesas.com> References: <20190805153558.5926-1-chris.paterson2@renesas.com> Subject: [cip-dev] [PATCH linux-4.19.y-cip] Update to run all CIP arm, arm64 and x86 configs 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 X-Virus-Scanned: ClamAV using ClamSMTP Also update to use new linux-cip-ci repository location. Support for real-time will be added later. Signed-off-by: Chris Paterson --- Today the linux-cip-ci project moved to the offical cip-project/cip-testing namespace. Until this patch is accepted CI won't work on this branch of the linux-cip project. .gitlab-ci.yml | 172 +++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 168 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fb775f4950b1..62562c8b6fbb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,9 +4,58 @@ variables: DOCKER_DRIVER: overlay2 DOCKER_IMAGE_TAG: v2 +# Building +arm_hitachi_cyclonev_defconfig: + stage: build + image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG + variables: + BUILD_ARCH: arm + CONFIG: hitachi_cyclonev_defconfig + CONFIG_LOC: cip-kernel-config + BUILD_ONLY: "true" + script: + - /opt/build_kernel.sh + artifacts: + name: "$CI_JOB_NAME" + when: on_success + paths: + - output + +arm_hitachi_omap_defconfig: + stage: build + image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG + variables: + BUILD_ARCH: arm + CONFIG: hitachi_omap_defconfig + CONFIG_LOC: cip-kernel-config + BUILD_ONLY: "true" + script: + - /opt/build_kernel.sh + artifacts: + name: "$CI_JOB_NAME" + when: on_success + paths: + - output + +arm_moxa_mxc_defconfig: + stage: build + image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG + variables: + BUILD_ARCH: arm + CONFIG: moxa_mxc_defconfig + CONFIG_LOC: cip-kernel-config + BUILD_ONLY: "true" + script: + - /opt/build_kernel.sh + artifacts: + name: "$CI_JOB_NAME" + when: on_success + paths: + - output + arm_renesas_shmobile_defconfig: stage: build - image: registry.gitlab.com/cip-playground/linux-cip-ci:build-$DOCKER_IMAGE_TAG + image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG variables: BUILD_ARCH: arm CONFIG: renesas_shmobile_defconfig @@ -21,9 +70,41 @@ arm_renesas_shmobile_defconfig: paths: - output +arm_siemens_imx6.config: + stage: build + image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG + variables: + BUILD_ARCH: arm + CONFIG: siemens_imx6.config + CONFIG_LOC: cip-kernel-config + BUILD_ONLY: "true" + script: + - /opt/build_kernel.sh + artifacts: + name: "$CI_JOB_NAME" + when: on_success + paths: + - output + +arm64_moxa_eds_defconfig: + stage: build + image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG + variables: + BUILD_ARCH: arm64 + CONFIG: moxa_eds_defconfig + CONFIG_LOC: cip-kernel-config + BUILD_ONLY: "true" + script: + - /opt/build_kernel.sh + artifacts: + name: "$CI_JOB_NAME" + when: on_success + paths: + - output + arm64_renesas_defconfig: stage: build - image: registry.gitlab.com/cip-playground/linux-cip-ci:build-$DOCKER_IMAGE_TAG + image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG variables: BUILD_ARCH: arm64 CONFIG: renesas_defconfig @@ -38,9 +119,74 @@ arm64_renesas_defconfig: paths: - output +x86_plathome_obsvx2.config: + stage: build + image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG + variables: + BUILD_ARCH: x86 + CONFIG: plathome_obsvx2.config + CONFIG_LOC: cip-kernel-config + BUILD_ONLY: "true" + script: + - /opt/build_kernel.sh + artifacts: + name: "$CI_JOB_NAME" + when: on_success + paths: + - output + +x86_siemens_iot2000.config: + stage: build + image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG + variables: + BUILD_ARCH: x86 + CONFIG: siemens_iot2000.config + CONFIG_LOC: cip-kernel-config + BUILD_ONLY: "true" + script: + - /opt/build_kernel.sh + artifacts: + name: "$CI_JOB_NAME" + when: on_success + paths: + - output + +x86_siemens_server_defconfig: + stage: build + image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG + variables: + BUILD_ARCH: x86 + CONFIG: siemens_server_defconfig + CONFIG_LOC: cip-kernel-config + BUILD_ONLY: "true" + script: + - /opt/build_kernel.sh + artifacts: + name: "$CI_JOB_NAME" + when: on_success + paths: + - output + +x86_toshiba_atom_baytrail_cip.config: + stage: build + image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG + variables: + BUILD_ARCH: x86 + CONFIG: toshiba_atom_baytrail_cip.config + CONFIG_LOC: cip-kernel-config + BUILD_ONLY: "true" + script: + - /opt/build_kernel.sh + artifacts: + name: "$CI_JOB_NAME" + when: on_success + paths: + - output + +# Extra build configurations arm_shmobile_defconfig: stage: build - image: registry.gitlab.com/cip-playground/linux-cip-ci:build-$DOCKER_IMAGE_TAG + image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG variables: BUILD_ARCH: arm CONFIG: shmobile_defconfig @@ -55,9 +201,27 @@ arm_shmobile_defconfig: paths: - output +arm64_defconfig: + stage: build + image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG + variables: + BUILD_ARCH: arm64 + CONFIG: defconfig + CONFIG_LOC: intree + DEVICES: r8a774c0-ek874 + DTBS: r8a774c0-ek874.dtb + script: + - /opt/build_kernel.sh + artifacts: + name: "$CI_JOB_NAME" + when: on_success + paths: + - output + +# Testing run_tests: stage: test - image: registry.gitlab.com/cip-playground/linux-cip-ci:test-$DOCKER_IMAGE_TAG + image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:test-$DOCKER_IMAGE_TAG when: always variables: GIT_STRATEGY: none