Files
timely-reference/.gitlab-ci.yml
Max Regan cdf0f4ffc9 Update such that tests pass for v1.2
This includes minor updates for the th different MCU variant, and bugfixes.

Resolves #7
2020-06-03 04:51:19 +00:00

39 lines
787 B
YAML

variables:
GIT_SUBMODULE_STRATEGY: "recursive"
.build_template: &build_template
image: registry.gitlab.maxregan.me/max/arm-build-image:latest
stage: build
script:
- make -C ./firmware/
artifacts:
paths:
- "firmware/Test/*.elf"
- "firmware/Test/*.bin"
- "firmware/Application/*.elf"
- "firmware/Application/*.bin"
build-devboard:
<<: *build_template
variables:
BOARD: devboard
build-watch:
<<: *build_template
variables:
BOARD: watch
test-watch:
stage: test
dependencies:
- build-watch
tags:
- tr-hw
- privileged
image: registry.gitlab.maxregan.me/max/timely-reference/test-exec
script:
- test/src/tr_test/test.py --junitxml=test-report.xml
artifacts:
reports:
junit: test-report.xml