From 4d0d3d74435c33c87cde72d6ba372b15f09da30c Mon Sep 17 00:00:00 2001 From: Michael Platings Date: Thu, 18 Jan 2024 13:58:55 +0000 Subject: [PATCH] Add .gitlab-ci.yml --- .gitlab-ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 000000000..ca3a66fcc --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,17 @@ +# SPDX-FileCopyrightText: 2024 Arm Limited and/or its affiliates +# +# SPDX-License-Identifier: Apache-2.0 + +image: registry.gitlab.arm.com/intrinsiccv/intrinsiccv + +build: + tags: + - arm64 + script: + - CHECK_ONLY=ON VERBOSE=ON scripts/format.sh + - cmake -S . -B build -G Ninja + - GTEST_OUTPUT=xml:$CI_PROJECT_DIR/test-results/ ninja -C build check-intrinsiccv + artifacts: + when: always + reports: + junit: test-results/*.xml -- GitLab