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

Colcon Build Tool #2330

Draft
wants to merge 7 commits into
base: ros2
Choose a base branch
from
Draft
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
File renamed without changes.
25 changes: 25 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Default settings
MIXIN_DIR=local
BUILD_CMD=colcon build --mixin $(MIXIN_DIR)

.PHONY: all debug rel_debug perf ci clean

all:
$(BUILD_CMD)

debug:
$(BUILD_CMD)/debug_flags

rel_debug:
$(BUILD_CMD)/rel_debug

perf:
$(BUILD_CMD)/perf_flags

ci:
$(BUILD_CMD)/ci_silent

clean:
colcon clean
rm -rf build install log

18 changes: 0 additions & 18 deletions ci/cmake-lint.json

This file was deleted.

8 changes: 8 additions & 0 deletions colcon.meta
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"defaults": {
"cmake-args": [
"-DCMAKE_BUILD_TYPE=Debug",
"-DCMAKE_CXX_FLAGS_DEBUG=-Og -Werror=return-type -Werror=delete-non-virtual-dtor"
]
}
}
2 changes: 1 addition & 1 deletion Dockerfile.ci → docker/Dockerfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN ln -fs /usr/share/zoneinfo/America/New_York /etc/localtime && dpkg-reconfigu
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8

COPY . ~/robocup-software
COPY .. ~/robocup-software
WORKDIR ~/robocup-software

RUN sudo ./util/ubuntu-setup --yes --no-submodules
File renamed without changes.
1 change: 0 additions & 1 deletion external/googletest
Submodule googletest deleted from 16f637
1 change: 0 additions & 1 deletion external/robocup-fshare
Submodule robocup-fshare deleted from 634ac6
1 change: 0 additions & 1 deletion external/rrt
Submodule rrt deleted from ed55e8
1 change: 0 additions & 1 deletion external/sdlcontrollerdb
Submodule sdlcontrollerdb deleted from 250c51
1 change: 0 additions & 1 deletion external/style-configs
Submodule style-configs deleted from 255fc4
1 change: 1 addition & 0 deletions install/.colcon_install_layout
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
isolated
Empty file added install/COLCON_IGNORE
Empty file.
Loading
Loading