tracetools_analysis/.gitlab-ci.yml
Christophe Bedard 5691af7f87 Update repo URLs
2019-07-05 13:57:07 +02:00

23 lines
613 B
YAML

image: registry.gitlab.com/micro-ROS/ros_tracing/ros2_tracing/ci-base:latest
variables:
DOCKER_DRIVER: overlay2
PACKAGES_LIST: tracetools_analysis
before_script:
- git clone https://gitlab.com/micro-ROS/ros_tracing/ros2_tracing.git
build:
script:
- colcon build --symlink-install --packages-up-to $PACKAGES_LIST
- colcon test --packages-select $PACKAGES_LIST
- colcon test-result
artifacts:
paths:
- install
- build/*/test_results/*/*.xunit.xml
- build/*/pytest.xml
reports:
junit:
- build/*/test_results/*/*.xunit.xml
- build/*/pytest.xml