Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: hint to explicitly build in release mode #435

Merged
merged 2 commits into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading