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

リリースビルドやめやめ #609

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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
1 change: 0 additions & 1 deletion .github/workflows/build_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ jobs:
. /opt/ros/${{ matrix.rosdistro }}/setup.sh
colcon build --event-handlers console_cohesion+ \
--packages-above-and-dependencies ${{ steps.get-modified-packages.outputs.modified-packages }} \
--cmake-args -DCMAKE_BUILD_TYPE=Release \
--mixin coverage-gcc coverage-pytest compile-commands
shell: bash

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/full_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Build
run: |
. /opt/ros/${{ matrix.rosdistro }}/setup.sh
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=Release
colcon build --symlink-install
shell: bash

- name: Test
Expand Down
2 changes: 1 addition & 1 deletion docker/ccache/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN ccache -sv

RUN cd .. && \
source /opt/ros/humble/setup.bash && \
colcon build --symlink-install --cmake-args '-DCMAKE_BUILD_TYPE=Release'
colcon build --symlink-install

RUN cd .. && rm -rf build/ src/ install/ log/ && mkdir src

Expand Down
2 changes: 1 addition & 1 deletion docker/prebuilt/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ RUN rosdep update && \

RUN cd .. && \
source /opt/ros/humble/setup.bash && \
colcon build --symlink-install --cmake-args '-DCMAKE_BUILD_TYPE=Release'
colcon build --symlink-install

RUN cd .. && rm -rf src/ && mkdir src
2 changes: 1 addition & 1 deletion docker/scenario/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ RUN rosdep update && \

RUN cd .. && \
source /opt/ros/humble/setup.bash && \
colcon build --symlink-install --cmake-args '-DCMAKE_BUILD_TYPE=Release'
colcon build --symlink-install
Loading