# Copyright (c) 2024 Skyward Experimental Rocketry # Authors: Luca Erbetta, Luca Conterio, Alberto Nidasio, Damiano Amatruda, Giacomo Caironi # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. variables: GIT_SUBMODULE_STRATEGY: recursive default: image: registry.skywarder.eu/avn/swd/docker/miosix:latest stages: - lint - build - test - documentation # Stage lint cppcheck: stage: lint script: - cppcheck --version - ./scripts/linter.py --cppcheck src format: stage: lint script: - clang-tidy --version - clang-format --version - ./scripts/linter.py --format src copyright: stage: lint script: - /usr/bin/python3 --version - ./scripts/linter.py --copyright src find: stage: lint script: - /usr/bin/python3 --version - ./scripts/linter.py --find src # Stage build build-debug: stage: build script: - cmake --version - ccache --version - ninja --version - ./sbs --debug build-release: stage: build script: - cmake --version - ccache --version - ninja --version - ./sbs logdecoder: stage: build script: - g++ --version - cd scripts/logdecoder - make # Stage test test: stage: test script: - ./sbs --test catch-tests-boardcore # Stage documentation pages: stage: documentation only: - main script: - doxygen --version - doxygen doc/Doxyfile - mv doc/output/html public artifacts: paths: - public