diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index aa33eb367ff33410d196da60360eaf56a91e0ba2..f7fc391c534ac6a5582b2a9f9e4ee491d1d34f5f 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