Skip to content

Commit

Permalink
Hack to set configuration values
Browse files Browse the repository at this point in the history
  • Loading branch information
nahueespinosa committed Jan 23, 2023
1 parent bc77da7 commit 50207e8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,11 @@ jobs:
colcon-defaults: |
{
"build": {
"mixin": ["ccache", "coverage-gcc", "coverage-pytest"]
"mixin": ["coverage-gcc", "coverage-pytest"],
"cmake-args": [
"-DCMAKE_C_COMPILER_LAUNCHER=ccache;-o;hash_dir=false;-o;debug=true;&&;ccache;-p;&&;ccache",
"-DCMAKE_CXX_COMPILER_LAUNCHER=ccache;-o;hash_dir=false;-o;debug=true;&&;ccache;-p;&&;ccache"
]
},
"test": {
"mixin": ["coverage-pytest"]
Expand All @@ -68,6 +72,8 @@ jobs:
- name: Lint
shell: bash
run: |
cat ros_ws/build/compile_commands.json
ls -la ros_ws/src
ccache --print-stats
git config --global --add safe.directory $PWD
source /opt/ros/${{ env.ROS_DISTRO }}/setup.sh
Expand Down

0 comments on commit 50207e8

Please sign in to comment.