Skip to content

Commit

Permalink
Merge pull request #435 from IMRCLab/feature_colcon_release
Browse files Browse the repository at this point in the history
Docs: hint to explicitly build in release mode
  • Loading branch information
knmcguire authored Feb 23, 2024
2 parents 32e87d6 + 0e15e74 commit 261f3e8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/systemtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: |
source /opt/ros/humble/setup.bash
cd ros2_ws
colcon build --symlink-install
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=Release
- name: Flight test
id: step5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/systemtests_sim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
run: |
source /opt/ros/humble/setup.bash
cd ros2_ws
colcon build --symlink-install
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=Release
- name: Flight test
id: step6
Expand Down
4 changes: 2 additions & 2 deletions docs2/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ First Installation
.. code-block:: bash
cd ../
colcon build --symlink-install
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=Release
.. note::
symlink-install allows you to edit Python and config files without running `colcon build` every time.
Expand Down Expand Up @@ -99,7 +99,7 @@ You can update your local copy using the following commands:
git submodule sync
git submodule update --init --recursive
cd ../../
colcon build --symlink-install
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=Release
.. Once you have completed installation,
Expand Down

0 comments on commit 261f3e8

Please sign in to comment.