Created
May 13, 2020 18:47
-
-
Save suru-dissanaike/513d644373a8e003b8ecfbac7d06fb4d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
image: surudissanaike/himinds-env-sensor-ci:0.1 | |
stages: | |
- build | |
- static-code-analysis | |
build: | |
stage: build | |
script: | |
- mos build | |
artifacts: | |
paths: | |
- ./build/fw.zip | |
expire_in: 2 week | |
jshint: | |
stage: static-code-analysis | |
allow_failure: true | |
script: | |
- jshint ./fs/init.js | |
flawfinder: | |
stage: static-code-analysis | |
allow_failure: true | |
script: | |
- flawfinder --falsepositive -m 5 ./src/ | |
cppcheck: | |
stage: static-code-analysis | |
allow_failure: true | |
script: | |
- cppcheck --enable=all --error-exitcode=1 ./src/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment