2022-04-24 15:27:09 +02:00
|
|
|
image: gcc
|
|
|
|
|
|
|
|
stages:
|
|
|
|
- build
|
2022-04-24 16:09:55 +02:00
|
|
|
- test
|
2022-04-24 15:27:09 +02:00
|
|
|
|
2022-05-22 06:16:15 +02:00
|
|
|
packages:
|
2022-05-22 06:18:08 +02:00
|
|
|
stage: build
|
2022-05-22 06:16:15 +02:00
|
|
|
script:
|
|
|
|
- dpkg-query -Wf'${db:Status-abbrev}' python3
|
|
|
|
|
2022-04-24 15:27:09 +02:00
|
|
|
build:
|
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- make
|
|
|
|
artifacts:
|
2022-04-24 15:28:37 +02:00
|
|
|
paths:
|
2022-04-24 15:27:09 +02:00
|
|
|
- main
|
2022-04-24 16:09:55 +02:00
|
|
|
stage: test
|
|
|
|
|
|
|
|
unit-testing:
|
|
|
|
stage: test
|
|
|
|
script:
|
|
|
|
- make unit-tests
|
2022-05-22 06:16:15 +02:00
|
|
|
|
|
|
|
examples_testing:
|
|
|
|
stage: test
|
|
|
|
script:
|
|
|
|
- etc/tools/test.py examples
|