23 lines
348 B
YAML
23 lines
348 B
YAML
|
variables:
|
||
|
# SW_KERNEL: "0"
|
||
|
# SW_MAJOR: "1"
|
||
|
# SW_MINOR: "10"
|
||
|
|
||
|
before_script:
|
||
|
- "echo $CI_BUILD_ID"
|
||
|
- "echo $CI_BUILD_REF_NAME"
|
||
|
|
||
|
stages:
|
||
|
- static_analysis
|
||
|
- test
|
||
|
|
||
|
static_analysis_tests:
|
||
|
stage: static_analysis
|
||
|
script:
|
||
|
- "python pylint_wrapper.py -s src -s tests"
|
||
|
|
||
|
unit_tests:
|
||
|
stage: test
|
||
|
script:
|
||
|
- "python tests/unittest/"
|