# Copyright (c) 2021 Skyward Experimental Rocketry # Authors: Luca Erbetta, Luca Conterio, Alberto Nidasio, Damiano Amatruda # # 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 stages: - build - test - lint - documentation # Stage build release: stage: build tags: - miosix script: - ./sbs debug: stage: build tags: - miosix script: - ./sbs --debug logdecoder: stage: build tags: - miosix script: - cd scripts/logdecoder - make # Stage test test: stage: test tags: - miosix script: - ./sbs --test catch-tests-boardcore # Stage lint cppcheck: stage: lint tags: - miosix script: - ./scripts/linter.py --cppcheck src format: stage: lint tags: - miosix script: - ./scripts/linter.py --format src copyright: stage: lint tags: - miosix script: - ./scripts/linter.py --copyright src find: stage: lint tags: - miosix script: - ./scripts/linter.py --find src # Stage documentation pages: stage: documentation only: - main script: - doxygen doc/Doxyfile - mv doc/output/html public artifacts: paths: - public