From 1fe3ab5e7e2f593a73cd5fe75d0bdf774f49b8b7 Mon Sep 17 00:00:00 2001
From: Alberto Nidasio <alberto.nidasio@skywarder.eu>
Date: Wed, 4 May 2022 13:23:57 +0200
Subject: [PATCH] [CI/CD] Updated pipeline configuration
---
.gitlab-ci.yml | 16 +++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index aa33eb367..f7fc391c5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -36,7 +36,7 @@ build-release:
tags:
- miosix
script:
- - ./sbs --jobs 2
+ - ./sbs
# Stage build-debug
@@ -45,34 +45,44 @@ build-debug:
tags:
- miosix
script:
- - ./sbs --jobs 2 --debug
+ - ./sbs --debug
# Stage test
test:
stage: test
+ tags:
+ - miosix
script:
- - ./sbs --jobs 2 --test catch-tests-main
+ - ./sbs --test catch-tests-main
# Stage lint
cppcheck:
stage: lint
+ tags:
+ - miosix
script:
- ./skyward-boardcore/scripts/linter.py --cppcheck src
format:
stage: lint
+ tags:
+ - miosix
script:
- ./skyward-boardcore/scripts/linter.py --format src
copyright:
stage: lint
+ tags:
+ - miosix
script:
- ./skyward-boardcore/scripts/linter.py --copyright src
find:
stage: lint
+ tags:
+ - miosix
script:
- ./skyward-boardcore/scripts/linter.py --find src
--
GitLab