File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed
Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change 11---
22# based on https://github.com/actions/starter-workflows/blob/main/ci/cmake-single-platform.yml
33name : Semantic Inference Build and Test
4- on : [ pull_request]
4+ on : {push: {branches: [main]}, pull_request: {branches: [main]}}
55jobs :
66 lint :
77 runs-on : ubuntu-latest
2626 shell : bash
2727 run : |
2828 source /opt/ros/jazzy/setup.bash
29- colcon build --cmake-args --no-warn-unused-cli \
30- -DCMAKE_BUILD_TYPE=Release \
31- -DCONFIG_UTILS_BUILD_TESTS=OFF \
32- -DCONFIG_UTILS_BUILD_DEMOS=OFF \
33- -DCONFIG_UTILS_ENABLE_GLOG=OFF \
34- -DCONFIG_UTILS_ENABLE_ROS=OFF \
35- -DSEMANTIC_INFERENCE_USE_TRT=OFF
29+ colcon build --cmake-args --no-warn-unused-cli -DCMAKE_BUILD_TYPE=Release -DSEMANTIC_INFERENCE_USE_TRT=OFF
3630 - name : Test
3731 shell : bash
3832 run : |-
3933 source /opt/ros/jazzy/setup.bash
40- colcon test
34+ colcon test --packages-select semantic_inference semantic_inference_ros
You can’t perform that action at this time.
0 commit comments