From patchwork Tue Jul 2 10:51:33 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chris Paterson X-Patchwork-Id: 11027645 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 85F80138B for ; Tue, 2 Jul 2019 10:53:01 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6EF4B28761 for ; Tue, 2 Jul 2019 10:53:01 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 62F0E288AC; Tue, 2 Jul 2019 10:53:01 +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 02C3928761 for ; Tue, 2 Jul 2019 10:53:00 +0000 (UTC) Received: from mail.linux-foundation.org (localhost [127.0.0.1]) by mail.linuxfoundation.org (Postfix) with ESMTP id D70541739; Tue, 2 Jul 2019 10:53:00 +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 60AC21836 for ; Tue, 2 Jul 2019 10:51:38 +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 DC357834 for ; Tue, 2 Jul 2019 10:51:37 +0000 (UTC) X-IronPort-AV: E=Sophos;i="5.62,443,1554735600"; d="scan'208";a="20320765" Received: from unknown (HELO relmlir6.idc.renesas.com) ([10.200.68.152]) by relmlie5.idc.renesas.com with ESMTP; 02 Jul 2019 19:51:37 +0900 Received: from renesas-ubuntu18.ree.adwin.renesas.com (unknown [10.226.36.226]) by relmlir6.idc.renesas.com (Postfix) with ESMTP id 902C440E64C9; Tue, 2 Jul 2019 19:51:36 +0900 (JST) From: Chris Paterson To: cip-dev@lists.cip-project.org Date: Tue, 2 Jul 2019 11:51:33 +0100 Message-Id: <20190702105133.23765-1-chris.paterson2@renesas.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190627131250.7932-2-chris.paterson2@renesas.com> References: <20190627131250.7932-2-chris.paterson2@renesas.com> Subject: [cip-dev] [PATCH v2 4.4.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 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 | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 000000000000..aec787a353bc --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,23 @@ +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 + +run_tests: + stage: test + image: registry.gitlab.com/cip-playground/linux-cip-ci:test-latest + when: always + before_script: [] + script: + - /opt/submit_tests.sh