diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..ca3a66fcce9c1dd6aecad65504b7f371c9cc3be7 --- /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