From patchwork Tue Jul 2 10:51:22 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chris Paterson X-Patchwork-Id: 11027641 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 6218E112C for ; Tue, 2 Jul 2019 10:52:18 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 4A1042873F for ; Tue, 2 Jul 2019 10:52:18 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 3E0D5288A9; Tue, 2 Jul 2019 10:52:18 +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 C7D822873F for ; Tue, 2 Jul 2019 10:52:17 +0000 (UTC) Received: from mail.linux-foundation.org (localhost [127.0.0.1]) by mail.linuxfoundation.org (Postfix) with ESMTP id A3AFB1739; Tue, 2 Jul 2019 10:52:17 +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 1F8511858 for ; Tue, 2 Jul 2019 10:51:30 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from relmlie5.idc.renesas.com (relmlor1.renesas.com [210.160.252.171]) by smtp1.linuxfoundation.org (Postfix) with ESMTP id F2134836 for ; Tue, 2 Jul 2019 10:51:27 +0000 (UTC) X-IronPort-AV: E=Sophos;i="5.62,443,1554735600"; d="scan'208";a="20320753" Received: from unknown (HELO relmlir5.idc.renesas.com) ([10.200.68.151]) by relmlie5.idc.renesas.com with ESMTP; 02 Jul 2019 19:51:26 +0900 Received: from renesas-ubuntu18.ree.adwin.renesas.com (unknown [10.226.36.226]) by relmlir5.idc.renesas.com (Postfix) with ESMTP id CEC3C4002C24; Tue, 2 Jul 2019 19:51:25 +0900 (JST) From: Chris Paterson To: cip-dev@lists.cip-project.org Date: Tue, 2 Jul 2019 11:51:22 +0100 Message-Id: <20190702105122.23718-1-chris.paterson2@renesas.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190627131250.7932-1-chris.paterson2@renesas.com> References: <20190627131250.7932-1-chris.paterson2@renesas.com> Subject: [cip-dev] [PATCH v2 4.19.y-cip] Add gitlab-ci.yaml 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 This is configured to build and test for the following configurations: 1. ARCH: arm CONFIGS: shmobile_defconfig BOARDS: r8a7743-iwg20d, r8a7745-iwg22d 2. ARCH: arm64 CONFIGS: defconfig BOARDS: r8a774c0-ek874 Over time support will be added for all CIP supported architectures and configurations. At the moment only simple boot tests are run. Real tests will be added in the future. Signed-off-by: Chris Paterson --- v1->v2: Updated to use latest linux-cip-ci version: 9d56f41a I still prefer to have these .gitlab-ci.yml files in the main cip repo, rather then split them off into their own repo and trigger them with hooks. Any opinions Kernel maintainers? .gitlab-ci.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 000000000000..71d92c975723 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,35 @@ +variables: + GIT_STRATEGY: clone + GIT_DEPTH: "10" + DOCKER_DRIVER: overlay2 + +build_arm_shmobile_defconfig: + stage: build + image: registry.gitlab.com/cip-playground/linux-cip-ci:build-latest + script: + - /opt/build_kernel.sh arm shmobile_defconfig + artifacts: + name: "$CI_JOB_NAME" + when: on_success + paths: + - output + +build_arm64_defconfig: + stage: build + image: registry.gitlab.com/cip-playground/linux-cip-ci:build-latest + script: + - /opt/build_kernel.sh arm64 defconfig + artifacts: + name: "$CI_JOB_NAME" + when: on_success + paths: + - output + +run_tests: + stage: test + image: registry.gitlab.com/cip-playground/linux-cip-ci:test-latest + when: always + before_script: [] + script: + - /opt/submit_tests.sh +