diff --git a/colcon.meta b/colcon.meta new file mode 100644 index 00000000000..b7c2ffb088a --- /dev/null +++ b/colcon.meta @@ -0,0 +1,8 @@ +{ + "defaults": { + "cmake-args": [ + "-DCMAKE_BUILD_TYPE=Debug", + "-DCMAKE_CXX_FLAGS_DEBUG=-Og -Werror=return-type -Werror=delete-non-virtual-dtor" + ] + } +} diff --git a/install/.colcon_install_layout b/install/.colcon_install_layout new file mode 100644 index 00000000000..3aad5336af1 --- /dev/null +++ b/install/.colcon_install_layout @@ -0,0 +1 @@ +isolated diff --git a/install/COLCON_IGNORE b/install/COLCON_IGNORE new file mode 100644 index 00000000000..e69de29bb2d diff --git a/install/_local_setup_util_ps1.py b/install/_local_setup_util_ps1.py new file mode 100644 index 00000000000..3c6d9e87790 --- /dev/null +++ b/install/_local_setup_util_ps1.py @@ -0,0 +1,407 @@ +# Copyright 2016-2019 Dirk Thomas +# Licensed under the Apache License, Version 2.0 + +import argparse +from collections import OrderedDict +import os +from pathlib import Path +import sys + + +FORMAT_STR_COMMENT_LINE = '# {comment}' +FORMAT_STR_SET_ENV_VAR = 'Set-Item -Path "Env:{name}" -Value "{value}"' +FORMAT_STR_USE_ENV_VAR = '$env:{name}' +FORMAT_STR_INVOKE_SCRIPT = '_colcon_prefix_powershell_source_script "{script_path}"' # noqa: E501 +FORMAT_STR_REMOVE_LEADING_SEPARATOR = '' # noqa: E501 +FORMAT_STR_REMOVE_TRAILING_SEPARATOR = '' # noqa: E501 + +DSV_TYPE_APPEND_NON_DUPLICATE = 'append-non-duplicate' +DSV_TYPE_PREPEND_NON_DUPLICATE = 'prepend-non-duplicate' +DSV_TYPE_PREPEND_NON_DUPLICATE_IF_EXISTS = 'prepend-non-duplicate-if-exists' +DSV_TYPE_SET = 'set' +DSV_TYPE_SET_IF_UNSET = 'set-if-unset' +DSV_TYPE_SOURCE = 'source' + + +def main(argv=sys.argv[1:]): # noqa: D103 + parser = argparse.ArgumentParser( + description='Output shell commands for the packages in topological ' + 'order') + parser.add_argument( + 'primary_extension', + help='The file extension of the primary shell') + parser.add_argument( + 'additional_extension', nargs='?', + help='The additional file extension to be considered') + parser.add_argument( + '--merged-install', action='store_true', + help='All install prefixes are merged into a single location') + args = parser.parse_args(argv) + + packages = get_packages(Path(__file__).parent, args.merged_install) + + ordered_packages = order_packages(packages) + for pkg_name in ordered_packages: + if _include_comments(): + print( + FORMAT_STR_COMMENT_LINE.format_map( + {'comment': 'Package: ' + pkg_name})) + prefix = os.path.abspath(os.path.dirname(__file__)) + if not args.merged_install: + prefix = os.path.join(prefix, pkg_name) + for line in get_commands( + pkg_name, prefix, args.primary_extension, + args.additional_extension + ): + print(line) + + for line in _remove_ending_separators(): + print(line) + + +def get_packages(prefix_path, merged_install): + """ + Find packages based on colcon-specific files created during installation. + + :param Path prefix_path: The install prefix path of all packages + :param bool merged_install: The flag if the packages are all installed + directly in the prefix or if each package is installed in a subdirectory + named after the package + :returns: A mapping from the package name to the set of runtime + dependencies + :rtype: dict + """ + packages = {} + # since importing colcon_core isn't feasible here the following constant + # must match colcon_core.location.get_relative_package_index_path() + subdirectory = 'share/colcon-core/packages' + if merged_install: + # return if workspace is empty + if not (prefix_path / subdirectory).is_dir(): + return packages + # find all files in the subdirectory + for p in (prefix_path / subdirectory).iterdir(): + if not p.is_file(): + continue + if p.name.startswith('.'): + continue + add_package_runtime_dependencies(p, packages) + else: + # for each subdirectory look for the package specific file + for p in prefix_path.iterdir(): + if not p.is_dir(): + continue + if p.name.startswith('.'): + continue + p = p / subdirectory / p.name + if p.is_file(): + add_package_runtime_dependencies(p, packages) + + # remove unknown dependencies + pkg_names = set(packages.keys()) + for k in packages.keys(): + packages[k] = {d for d in packages[k] if d in pkg_names} + + return packages + + +def add_package_runtime_dependencies(path, packages): + """ + Check the path and if it exists extract the packages runtime dependencies. + + :param Path path: The resource file containing the runtime dependencies + :param dict packages: A mapping from package names to the sets of runtime + dependencies to add to + """ + content = path.read_text() + dependencies = set(content.split(os.pathsep) if content else []) + packages[path.name] = dependencies + + +def order_packages(packages): + """ + Order packages topologically. + + :param dict packages: A mapping from package name to the set of runtime + dependencies + :returns: The package names + :rtype: list + """ + # select packages with no dependencies in alphabetical order + to_be_ordered = list(packages.keys()) + ordered = [] + while to_be_ordered: + pkg_names_without_deps = [ + name for name in to_be_ordered if not packages[name]] + if not pkg_names_without_deps: + reduce_cycle_set(packages) + raise RuntimeError( + 'Circular dependency between: ' + ', '.join(sorted(packages))) + pkg_names_without_deps.sort() + pkg_name = pkg_names_without_deps[0] + to_be_ordered.remove(pkg_name) + ordered.append(pkg_name) + # remove item from dependency lists + for k in list(packages.keys()): + if pkg_name in packages[k]: + packages[k].remove(pkg_name) + return ordered + + +def reduce_cycle_set(packages): + """ + Reduce the set of packages to the ones part of the circular dependency. + + :param dict packages: A mapping from package name to the set of runtime + dependencies which is modified in place + """ + last_depended = None + while len(packages) > 0: + # get all remaining dependencies + depended = set() + for pkg_name, dependencies in packages.items(): + depended = depended.union(dependencies) + # remove all packages which are not dependent on + for name in list(packages.keys()): + if name not in depended: + del packages[name] + if last_depended: + # if remaining packages haven't changed return them + if last_depended == depended: + return packages.keys() + # otherwise reduce again + last_depended = depended + + +def _include_comments(): + # skipping comment lines when COLCON_TRACE is not set speeds up the + # processing especially on Windows + return bool(os.environ.get('COLCON_TRACE')) + + +def get_commands(pkg_name, prefix, primary_extension, additional_extension): + commands = [] + package_dsv_path = os.path.join(prefix, 'share', pkg_name, 'package.dsv') + if os.path.exists(package_dsv_path): + commands += process_dsv_file( + package_dsv_path, prefix, primary_extension, additional_extension) + return commands + + +def process_dsv_file( + dsv_path, prefix, primary_extension=None, additional_extension=None +): + commands = [] + if _include_comments(): + commands.append(FORMAT_STR_COMMENT_LINE.format_map({'comment': dsv_path})) + with open(dsv_path, 'r') as h: + content = h.read() + lines = content.splitlines() + + basenames = OrderedDict() + for i, line in enumerate(lines): + # skip over empty or whitespace-only lines + if not line.strip(): + continue + # skip over comments + if line.startswith('#'): + continue + try: + type_, remainder = line.split(';', 1) + except ValueError: + raise RuntimeError( + "Line %d in '%s' doesn't contain a semicolon separating the " + 'type from the arguments' % (i + 1, dsv_path)) + if type_ != DSV_TYPE_SOURCE: + # handle non-source lines + try: + commands += handle_dsv_types_except_source( + type_, remainder, prefix) + except RuntimeError as e: + raise RuntimeError( + "Line %d in '%s' %s" % (i + 1, dsv_path, e)) from e + else: + # group remaining source lines by basename + path_without_ext, ext = os.path.splitext(remainder) + if path_without_ext not in basenames: + basenames[path_without_ext] = set() + assert ext.startswith('.') + ext = ext[1:] + if ext in (primary_extension, additional_extension): + basenames[path_without_ext].add(ext) + + # add the dsv extension to each basename if the file exists + for basename, extensions in basenames.items(): + if not os.path.isabs(basename): + basename = os.path.join(prefix, basename) + if os.path.exists(basename + '.dsv'): + extensions.add('dsv') + + for basename, extensions in basenames.items(): + if not os.path.isabs(basename): + basename = os.path.join(prefix, basename) + if 'dsv' in extensions: + # process dsv files recursively + commands += process_dsv_file( + basename + '.dsv', prefix, primary_extension=primary_extension, + additional_extension=additional_extension) + elif primary_extension in extensions and len(extensions) == 1: + # source primary-only files + commands += [ + FORMAT_STR_INVOKE_SCRIPT.format_map({ + 'prefix': prefix, + 'script_path': basename + '.' + primary_extension})] + elif additional_extension in extensions: + # source non-primary files + commands += [ + FORMAT_STR_INVOKE_SCRIPT.format_map({ + 'prefix': prefix, + 'script_path': basename + '.' + additional_extension})] + + return commands + + +def handle_dsv_types_except_source(type_, remainder, prefix): + commands = [] + if type_ in (DSV_TYPE_SET, DSV_TYPE_SET_IF_UNSET): + try: + env_name, value = remainder.split(';', 1) + except ValueError: + raise RuntimeError( + "doesn't contain a semicolon separating the environment name " + 'from the value') + try_prefixed_value = os.path.join(prefix, value) if value else prefix + if os.path.exists(try_prefixed_value): + value = try_prefixed_value + if type_ == DSV_TYPE_SET: + commands += _set(env_name, value) + elif type_ == DSV_TYPE_SET_IF_UNSET: + commands += _set_if_unset(env_name, value) + else: + assert False + elif type_ in ( + DSV_TYPE_APPEND_NON_DUPLICATE, + DSV_TYPE_PREPEND_NON_DUPLICATE, + DSV_TYPE_PREPEND_NON_DUPLICATE_IF_EXISTS + ): + try: + env_name_and_values = remainder.split(';') + except ValueError: + raise RuntimeError( + "doesn't contain a semicolon separating the environment name " + 'from the values') + env_name = env_name_and_values[0] + values = env_name_and_values[1:] + for value in values: + if not value: + value = prefix + elif not os.path.isabs(value): + value = os.path.join(prefix, value) + if ( + type_ == DSV_TYPE_PREPEND_NON_DUPLICATE_IF_EXISTS and + not os.path.exists(value) + ): + comment = f'skip extending {env_name} with not existing ' \ + f'path: {value}' + if _include_comments(): + commands.append( + FORMAT_STR_COMMENT_LINE.format_map({'comment': comment})) + elif type_ == DSV_TYPE_APPEND_NON_DUPLICATE: + commands += _append_unique_value(env_name, value) + else: + commands += _prepend_unique_value(env_name, value) + else: + raise RuntimeError( + 'contains an unknown environment hook type: ' + type_) + return commands + + +env_state = {} + + +def _append_unique_value(name, value): + global env_state + if name not in env_state: + if os.environ.get(name): + env_state[name] = set(os.environ[name].split(os.pathsep)) + else: + env_state[name] = set() + # append even if the variable has not been set yet, in case a shell script sets the + # same variable without the knowledge of this Python script. + # later _remove_ending_separators() will cleanup any unintentional leading separator + extend = FORMAT_STR_USE_ENV_VAR.format_map({'name': name}) + os.pathsep + line = FORMAT_STR_SET_ENV_VAR.format_map( + {'name': name, 'value': extend + value}) + if value not in env_state[name]: + env_state[name].add(value) + else: + if not _include_comments(): + return [] + line = FORMAT_STR_COMMENT_LINE.format_map({'comment': line}) + return [line] + + +def _prepend_unique_value(name, value): + global env_state + if name not in env_state: + if os.environ.get(name): + env_state[name] = set(os.environ[name].split(os.pathsep)) + else: + env_state[name] = set() + # prepend even if the variable has not been set yet, in case a shell script sets the + # same variable without the knowledge of this Python script. + # later _remove_ending_separators() will cleanup any unintentional trailing separator + extend = os.pathsep + FORMAT_STR_USE_ENV_VAR.format_map({'name': name}) + line = FORMAT_STR_SET_ENV_VAR.format_map( + {'name': name, 'value': value + extend}) + if value not in env_state[name]: + env_state[name].add(value) + else: + if not _include_comments(): + return [] + line = FORMAT_STR_COMMENT_LINE.format_map({'comment': line}) + return [line] + + +# generate commands for removing prepended underscores +def _remove_ending_separators(): + # do nothing if the shell extension does not implement the logic + if FORMAT_STR_REMOVE_TRAILING_SEPARATOR is None: + return [] + + global env_state + commands = [] + for name in env_state: + # skip variables that already had values before this script started prepending + if name in os.environ: + continue + commands += [ + FORMAT_STR_REMOVE_LEADING_SEPARATOR.format_map({'name': name}), + FORMAT_STR_REMOVE_TRAILING_SEPARATOR.format_map({'name': name})] + return commands + + +def _set(name, value): + global env_state + env_state[name] = value + line = FORMAT_STR_SET_ENV_VAR.format_map( + {'name': name, 'value': value}) + return [line] + + +def _set_if_unset(name, value): + global env_state + line = FORMAT_STR_SET_ENV_VAR.format_map( + {'name': name, 'value': value}) + if env_state.get(name, os.environ.get(name)): + line = FORMAT_STR_COMMENT_LINE.format_map({'comment': line}) + return [line] + + +if __name__ == '__main__': # pragma: no cover + try: + rc = main() + except RuntimeError as e: + print(str(e), file=sys.stderr) + rc = 1 + sys.exit(rc) diff --git a/install/_local_setup_util_sh.py b/install/_local_setup_util_sh.py new file mode 100644 index 00000000000..f67eaa9891e --- /dev/null +++ b/install/_local_setup_util_sh.py @@ -0,0 +1,407 @@ +# Copyright 2016-2019 Dirk Thomas +# Licensed under the Apache License, Version 2.0 + +import argparse +from collections import OrderedDict +import os +from pathlib import Path +import sys + + +FORMAT_STR_COMMENT_LINE = '# {comment}' +FORMAT_STR_SET_ENV_VAR = 'export {name}="{value}"' +FORMAT_STR_USE_ENV_VAR = '${name}' +FORMAT_STR_INVOKE_SCRIPT = 'COLCON_CURRENT_PREFIX="{prefix}" _colcon_prefix_sh_source_script "{script_path}"' # noqa: E501 +FORMAT_STR_REMOVE_LEADING_SEPARATOR = 'if [ "$(echo -n ${name} | head -c 1)" = ":" ]; then export {name}=${{{name}#?}} ; fi' # noqa: E501 +FORMAT_STR_REMOVE_TRAILING_SEPARATOR = 'if [ "$(echo -n ${name} | tail -c 1)" = ":" ]; then export {name}=${{{name}%?}} ; fi' # noqa: E501 + +DSV_TYPE_APPEND_NON_DUPLICATE = 'append-non-duplicate' +DSV_TYPE_PREPEND_NON_DUPLICATE = 'prepend-non-duplicate' +DSV_TYPE_PREPEND_NON_DUPLICATE_IF_EXISTS = 'prepend-non-duplicate-if-exists' +DSV_TYPE_SET = 'set' +DSV_TYPE_SET_IF_UNSET = 'set-if-unset' +DSV_TYPE_SOURCE = 'source' + + +def main(argv=sys.argv[1:]): # noqa: D103 + parser = argparse.ArgumentParser( + description='Output shell commands for the packages in topological ' + 'order') + parser.add_argument( + 'primary_extension', + help='The file extension of the primary shell') + parser.add_argument( + 'additional_extension', nargs='?', + help='The additional file extension to be considered') + parser.add_argument( + '--merged-install', action='store_true', + help='All install prefixes are merged into a single location') + args = parser.parse_args(argv) + + packages = get_packages(Path(__file__).parent, args.merged_install) + + ordered_packages = order_packages(packages) + for pkg_name in ordered_packages: + if _include_comments(): + print( + FORMAT_STR_COMMENT_LINE.format_map( + {'comment': 'Package: ' + pkg_name})) + prefix = os.path.abspath(os.path.dirname(__file__)) + if not args.merged_install: + prefix = os.path.join(prefix, pkg_name) + for line in get_commands( + pkg_name, prefix, args.primary_extension, + args.additional_extension + ): + print(line) + + for line in _remove_ending_separators(): + print(line) + + +def get_packages(prefix_path, merged_install): + """ + Find packages based on colcon-specific files created during installation. + + :param Path prefix_path: The install prefix path of all packages + :param bool merged_install: The flag if the packages are all installed + directly in the prefix or if each package is installed in a subdirectory + named after the package + :returns: A mapping from the package name to the set of runtime + dependencies + :rtype: dict + """ + packages = {} + # since importing colcon_core isn't feasible here the following constant + # must match colcon_core.location.get_relative_package_index_path() + subdirectory = 'share/colcon-core/packages' + if merged_install: + # return if workspace is empty + if not (prefix_path / subdirectory).is_dir(): + return packages + # find all files in the subdirectory + for p in (prefix_path / subdirectory).iterdir(): + if not p.is_file(): + continue + if p.name.startswith('.'): + continue + add_package_runtime_dependencies(p, packages) + else: + # for each subdirectory look for the package specific file + for p in prefix_path.iterdir(): + if not p.is_dir(): + continue + if p.name.startswith('.'): + continue + p = p / subdirectory / p.name + if p.is_file(): + add_package_runtime_dependencies(p, packages) + + # remove unknown dependencies + pkg_names = set(packages.keys()) + for k in packages.keys(): + packages[k] = {d for d in packages[k] if d in pkg_names} + + return packages + + +def add_package_runtime_dependencies(path, packages): + """ + Check the path and if it exists extract the packages runtime dependencies. + + :param Path path: The resource file containing the runtime dependencies + :param dict packages: A mapping from package names to the sets of runtime + dependencies to add to + """ + content = path.read_text() + dependencies = set(content.split(os.pathsep) if content else []) + packages[path.name] = dependencies + + +def order_packages(packages): + """ + Order packages topologically. + + :param dict packages: A mapping from package name to the set of runtime + dependencies + :returns: The package names + :rtype: list + """ + # select packages with no dependencies in alphabetical order + to_be_ordered = list(packages.keys()) + ordered = [] + while to_be_ordered: + pkg_names_without_deps = [ + name for name in to_be_ordered if not packages[name]] + if not pkg_names_without_deps: + reduce_cycle_set(packages) + raise RuntimeError( + 'Circular dependency between: ' + ', '.join(sorted(packages))) + pkg_names_without_deps.sort() + pkg_name = pkg_names_without_deps[0] + to_be_ordered.remove(pkg_name) + ordered.append(pkg_name) + # remove item from dependency lists + for k in list(packages.keys()): + if pkg_name in packages[k]: + packages[k].remove(pkg_name) + return ordered + + +def reduce_cycle_set(packages): + """ + Reduce the set of packages to the ones part of the circular dependency. + + :param dict packages: A mapping from package name to the set of runtime + dependencies which is modified in place + """ + last_depended = None + while len(packages) > 0: + # get all remaining dependencies + depended = set() + for pkg_name, dependencies in packages.items(): + depended = depended.union(dependencies) + # remove all packages which are not dependent on + for name in list(packages.keys()): + if name not in depended: + del packages[name] + if last_depended: + # if remaining packages haven't changed return them + if last_depended == depended: + return packages.keys() + # otherwise reduce again + last_depended = depended + + +def _include_comments(): + # skipping comment lines when COLCON_TRACE is not set speeds up the + # processing especially on Windows + return bool(os.environ.get('COLCON_TRACE')) + + +def get_commands(pkg_name, prefix, primary_extension, additional_extension): + commands = [] + package_dsv_path = os.path.join(prefix, 'share', pkg_name, 'package.dsv') + if os.path.exists(package_dsv_path): + commands += process_dsv_file( + package_dsv_path, prefix, primary_extension, additional_extension) + return commands + + +def process_dsv_file( + dsv_path, prefix, primary_extension=None, additional_extension=None +): + commands = [] + if _include_comments(): + commands.append(FORMAT_STR_COMMENT_LINE.format_map({'comment': dsv_path})) + with open(dsv_path, 'r') as h: + content = h.read() + lines = content.splitlines() + + basenames = OrderedDict() + for i, line in enumerate(lines): + # skip over empty or whitespace-only lines + if not line.strip(): + continue + # skip over comments + if line.startswith('#'): + continue + try: + type_, remainder = line.split(';', 1) + except ValueError: + raise RuntimeError( + "Line %d in '%s' doesn't contain a semicolon separating the " + 'type from the arguments' % (i + 1, dsv_path)) + if type_ != DSV_TYPE_SOURCE: + # handle non-source lines + try: + commands += handle_dsv_types_except_source( + type_, remainder, prefix) + except RuntimeError as e: + raise RuntimeError( + "Line %d in '%s' %s" % (i + 1, dsv_path, e)) from e + else: + # group remaining source lines by basename + path_without_ext, ext = os.path.splitext(remainder) + if path_without_ext not in basenames: + basenames[path_without_ext] = set() + assert ext.startswith('.') + ext = ext[1:] + if ext in (primary_extension, additional_extension): + basenames[path_without_ext].add(ext) + + # add the dsv extension to each basename if the file exists + for basename, extensions in basenames.items(): + if not os.path.isabs(basename): + basename = os.path.join(prefix, basename) + if os.path.exists(basename + '.dsv'): + extensions.add('dsv') + + for basename, extensions in basenames.items(): + if not os.path.isabs(basename): + basename = os.path.join(prefix, basename) + if 'dsv' in extensions: + # process dsv files recursively + commands += process_dsv_file( + basename + '.dsv', prefix, primary_extension=primary_extension, + additional_extension=additional_extension) + elif primary_extension in extensions and len(extensions) == 1: + # source primary-only files + commands += [ + FORMAT_STR_INVOKE_SCRIPT.format_map({ + 'prefix': prefix, + 'script_path': basename + '.' + primary_extension})] + elif additional_extension in extensions: + # source non-primary files + commands += [ + FORMAT_STR_INVOKE_SCRIPT.format_map({ + 'prefix': prefix, + 'script_path': basename + '.' + additional_extension})] + + return commands + + +def handle_dsv_types_except_source(type_, remainder, prefix): + commands = [] + if type_ in (DSV_TYPE_SET, DSV_TYPE_SET_IF_UNSET): + try: + env_name, value = remainder.split(';', 1) + except ValueError: + raise RuntimeError( + "doesn't contain a semicolon separating the environment name " + 'from the value') + try_prefixed_value = os.path.join(prefix, value) if value else prefix + if os.path.exists(try_prefixed_value): + value = try_prefixed_value + if type_ == DSV_TYPE_SET: + commands += _set(env_name, value) + elif type_ == DSV_TYPE_SET_IF_UNSET: + commands += _set_if_unset(env_name, value) + else: + assert False + elif type_ in ( + DSV_TYPE_APPEND_NON_DUPLICATE, + DSV_TYPE_PREPEND_NON_DUPLICATE, + DSV_TYPE_PREPEND_NON_DUPLICATE_IF_EXISTS + ): + try: + env_name_and_values = remainder.split(';') + except ValueError: + raise RuntimeError( + "doesn't contain a semicolon separating the environment name " + 'from the values') + env_name = env_name_and_values[0] + values = env_name_and_values[1:] + for value in values: + if not value: + value = prefix + elif not os.path.isabs(value): + value = os.path.join(prefix, value) + if ( + type_ == DSV_TYPE_PREPEND_NON_DUPLICATE_IF_EXISTS and + not os.path.exists(value) + ): + comment = f'skip extending {env_name} with not existing ' \ + f'path: {value}' + if _include_comments(): + commands.append( + FORMAT_STR_COMMENT_LINE.format_map({'comment': comment})) + elif type_ == DSV_TYPE_APPEND_NON_DUPLICATE: + commands += _append_unique_value(env_name, value) + else: + commands += _prepend_unique_value(env_name, value) + else: + raise RuntimeError( + 'contains an unknown environment hook type: ' + type_) + return commands + + +env_state = {} + + +def _append_unique_value(name, value): + global env_state + if name not in env_state: + if os.environ.get(name): + env_state[name] = set(os.environ[name].split(os.pathsep)) + else: + env_state[name] = set() + # append even if the variable has not been set yet, in case a shell script sets the + # same variable without the knowledge of this Python script. + # later _remove_ending_separators() will cleanup any unintentional leading separator + extend = FORMAT_STR_USE_ENV_VAR.format_map({'name': name}) + os.pathsep + line = FORMAT_STR_SET_ENV_VAR.format_map( + {'name': name, 'value': extend + value}) + if value not in env_state[name]: + env_state[name].add(value) + else: + if not _include_comments(): + return [] + line = FORMAT_STR_COMMENT_LINE.format_map({'comment': line}) + return [line] + + +def _prepend_unique_value(name, value): + global env_state + if name not in env_state: + if os.environ.get(name): + env_state[name] = set(os.environ[name].split(os.pathsep)) + else: + env_state[name] = set() + # prepend even if the variable has not been set yet, in case a shell script sets the + # same variable without the knowledge of this Python script. + # later _remove_ending_separators() will cleanup any unintentional trailing separator + extend = os.pathsep + FORMAT_STR_USE_ENV_VAR.format_map({'name': name}) + line = FORMAT_STR_SET_ENV_VAR.format_map( + {'name': name, 'value': value + extend}) + if value not in env_state[name]: + env_state[name].add(value) + else: + if not _include_comments(): + return [] + line = FORMAT_STR_COMMENT_LINE.format_map({'comment': line}) + return [line] + + +# generate commands for removing prepended underscores +def _remove_ending_separators(): + # do nothing if the shell extension does not implement the logic + if FORMAT_STR_REMOVE_TRAILING_SEPARATOR is None: + return [] + + global env_state + commands = [] + for name in env_state: + # skip variables that already had values before this script started prepending + if name in os.environ: + continue + commands += [ + FORMAT_STR_REMOVE_LEADING_SEPARATOR.format_map({'name': name}), + FORMAT_STR_REMOVE_TRAILING_SEPARATOR.format_map({'name': name})] + return commands + + +def _set(name, value): + global env_state + env_state[name] = value + line = FORMAT_STR_SET_ENV_VAR.format_map( + {'name': name, 'value': value}) + return [line] + + +def _set_if_unset(name, value): + global env_state + line = FORMAT_STR_SET_ENV_VAR.format_map( + {'name': name, 'value': value}) + if env_state.get(name, os.environ.get(name)): + line = FORMAT_STR_COMMENT_LINE.format_map({'comment': line}) + return [line] + + +if __name__ == '__main__': # pragma: no cover + try: + rc = main() + except RuntimeError as e: + print(str(e), file=sys.stderr) + rc = 1 + sys.exit(rc) diff --git a/install/local_setup.bash b/install/local_setup.bash new file mode 100644 index 00000000000..03f00256c1a --- /dev/null +++ b/install/local_setup.bash @@ -0,0 +1,121 @@ +# generated from colcon_bash/shell/template/prefix.bash.em + +# This script extends the environment with all packages contained in this +# prefix path. + +# a bash script is able to determine its own path if necessary +if [ -z "$COLCON_CURRENT_PREFIX" ]; then + _colcon_prefix_bash_COLCON_CURRENT_PREFIX="$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd)" +else + _colcon_prefix_bash_COLCON_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" +fi + +# function to prepend a value to a variable +# which uses colons as separators +# duplicates as well as trailing separators are avoided +# first argument: the name of the result variable +# second argument: the value to be prepended +_colcon_prefix_bash_prepend_unique_value() { + # arguments + _listname="$1" + _value="$2" + + # get values from variable + eval _values=\"\$$_listname\" + # backup the field separator + _colcon_prefix_bash_prepend_unique_value_IFS="$IFS" + IFS=":" + # start with the new value + _all_values="$_value" + _contained_value="" + # iterate over existing values in the variable + for _item in $_values; do + # ignore empty strings + if [ -z "$_item" ]; then + continue + fi + # ignore duplicates of _value + if [ "$_item" = "$_value" ]; then + _contained_value=1 + continue + fi + # keep non-duplicate values + _all_values="$_all_values:$_item" + done + unset _item + if [ -z "$_contained_value" ]; then + if [ -n "$COLCON_TRACE" ]; then + if [ "$_all_values" = "$_value" ]; then + echo "export $_listname=$_value" + else + echo "export $_listname=$_value:\$$_listname" + fi + fi + fi + unset _contained_value + # restore the field separator + IFS="$_colcon_prefix_bash_prepend_unique_value_IFS" + unset _colcon_prefix_bash_prepend_unique_value_IFS + # export the updated variable + eval export $_listname=\"$_all_values\" + unset _all_values + unset _values + + unset _value + unset _listname +} + +# add this prefix to the COLCON_PREFIX_PATH +_colcon_prefix_bash_prepend_unique_value COLCON_PREFIX_PATH "$_colcon_prefix_bash_COLCON_CURRENT_PREFIX" +unset _colcon_prefix_bash_prepend_unique_value + +# check environment variable for custom Python executable +if [ -n "$COLCON_PYTHON_EXECUTABLE" ]; then + if [ ! -f "$COLCON_PYTHON_EXECUTABLE" ]; then + echo "error: COLCON_PYTHON_EXECUTABLE '$COLCON_PYTHON_EXECUTABLE' doesn't exist" + return 1 + fi + _colcon_python_executable="$COLCON_PYTHON_EXECUTABLE" +else + # try the Python executable known at configure time + _colcon_python_executable="/usr/bin/python3" + # if it doesn't exist try a fall back + if [ ! -f "$_colcon_python_executable" ]; then + if ! /usr/bin/env python3 --version > /dev/null 2> /dev/null; then + echo "error: unable to find python3 executable" + return 1 + fi + _colcon_python_executable=`/usr/bin/env python3 -c "import sys; print(sys.executable)"` + fi +fi + +# function to source another script with conditional trace output +# first argument: the path of the script +_colcon_prefix_sh_source_script() { + if [ -f "$1" ]; then + if [ -n "$COLCON_TRACE" ]; then + echo "# . \"$1\"" + fi + . "$1" + else + echo "not found: \"$1\"" 1>&2 + fi +} + +# get all commands in topological order +_colcon_ordered_commands="$($_colcon_python_executable "$_colcon_prefix_bash_COLCON_CURRENT_PREFIX/_local_setup_util_sh.py" sh bash)" +unset _colcon_python_executable +if [ -n "$COLCON_TRACE" ]; then + echo "$(declare -f _colcon_prefix_sh_source_script)" + echo "# Execute generated script:" + echo "# <<<" + echo "${_colcon_ordered_commands}" + echo "# >>>" + echo "unset _colcon_prefix_sh_source_script" +fi +eval "${_colcon_ordered_commands}" +unset _colcon_ordered_commands + +unset _colcon_prefix_sh_source_script + +unset _colcon_prefix_bash_COLCON_CURRENT_PREFIX diff --git a/install/local_setup.ps1 b/install/local_setup.ps1 new file mode 100644 index 00000000000..6f68c8dede9 --- /dev/null +++ b/install/local_setup.ps1 @@ -0,0 +1,55 @@ +# generated from colcon_powershell/shell/template/prefix.ps1.em + +# This script extends the environment with all packages contained in this +# prefix path. + +# check environment variable for custom Python executable +if ($env:COLCON_PYTHON_EXECUTABLE) { + if (!(Test-Path "$env:COLCON_PYTHON_EXECUTABLE" -PathType Leaf)) { + echo "error: COLCON_PYTHON_EXECUTABLE '$env:COLCON_PYTHON_EXECUTABLE' doesn't exist" + exit 1 + } + $_colcon_python_executable="$env:COLCON_PYTHON_EXECUTABLE" +} else { + # use the Python executable known at configure time + $_colcon_python_executable="/usr/bin/python3" + # if it doesn't exist try a fall back + if (!(Test-Path "$_colcon_python_executable" -PathType Leaf)) { + if (!(Get-Command "python3" -ErrorAction SilentlyContinue)) { + echo "error: unable to find python3 executable" + exit 1 + } + $_colcon_python_executable="python3" + } +} + +# function to source another script with conditional trace output +# first argument: the path of the script +function _colcon_prefix_powershell_source_script { + param ( + $_colcon_prefix_powershell_source_script_param + ) + # source script with conditional trace output + if (Test-Path $_colcon_prefix_powershell_source_script_param) { + if ($env:COLCON_TRACE) { + echo ". '$_colcon_prefix_powershell_source_script_param'" + } + . "$_colcon_prefix_powershell_source_script_param" + } else { + Write-Error "not found: '$_colcon_prefix_powershell_source_script_param'" + } +} + +# get all commands in topological order +$_colcon_ordered_commands = & "$_colcon_python_executable" "$(Split-Path $PSCommandPath -Parent)/_local_setup_util_ps1.py" ps1 + +# execute all commands in topological order +if ($env:COLCON_TRACE) { + echo "Execute generated script:" + echo "<<<" + $_colcon_ordered_commands.Split([Environment]::NewLine, [StringSplitOptions]::RemoveEmptyEntries) | Write-Output + echo ">>>" +} +if ($_colcon_ordered_commands) { + $_colcon_ordered_commands.Split([Environment]::NewLine, [StringSplitOptions]::RemoveEmptyEntries) | Invoke-Expression +} diff --git a/install/local_setup.sh b/install/local_setup.sh new file mode 100644 index 00000000000..cf8116187c9 --- /dev/null +++ b/install/local_setup.sh @@ -0,0 +1,137 @@ +# generated from colcon_core/shell/template/prefix.sh.em + +# This script extends the environment with all packages contained in this +# prefix path. + +# since a plain shell script can't determine its own path when being sourced +# either use the provided COLCON_CURRENT_PREFIX +# or fall back to the build time prefix (if it exists) +_colcon_prefix_sh_COLCON_CURRENT_PREFIX="/root/robocup-software/install" +if [ -z "$COLCON_CURRENT_PREFIX" ]; then + if [ ! -d "$_colcon_prefix_sh_COLCON_CURRENT_PREFIX" ]; then + echo "The build time path \"$_colcon_prefix_sh_COLCON_CURRENT_PREFIX\" doesn't exist. Either source a script for a different shell or set the environment variable \"COLCON_CURRENT_PREFIX\" explicitly." 1>&2 + unset _colcon_prefix_sh_COLCON_CURRENT_PREFIX + return 1 + fi +else + _colcon_prefix_sh_COLCON_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" +fi + +# function to prepend a value to a variable +# which uses colons as separators +# duplicates as well as trailing separators are avoided +# first argument: the name of the result variable +# second argument: the value to be prepended +_colcon_prefix_sh_prepend_unique_value() { + # arguments + _listname="$1" + _value="$2" + + # get values from variable + eval _values=\"\$$_listname\" + # backup the field separator + _colcon_prefix_sh_prepend_unique_value_IFS="$IFS" + IFS=":" + # start with the new value + _all_values="$_value" + _contained_value="" + # iterate over existing values in the variable + for _item in $_values; do + # ignore empty strings + if [ -z "$_item" ]; then + continue + fi + # ignore duplicates of _value + if [ "$_item" = "$_value" ]; then + _contained_value=1 + continue + fi + # keep non-duplicate values + _all_values="$_all_values:$_item" + done + unset _item + if [ -z "$_contained_value" ]; then + if [ -n "$COLCON_TRACE" ]; then + if [ "$_all_values" = "$_value" ]; then + echo "export $_listname=$_value" + else + echo "export $_listname=$_value:\$$_listname" + fi + fi + fi + unset _contained_value + # restore the field separator + IFS="$_colcon_prefix_sh_prepend_unique_value_IFS" + unset _colcon_prefix_sh_prepend_unique_value_IFS + # export the updated variable + eval export $_listname=\"$_all_values\" + unset _all_values + unset _values + + unset _value + unset _listname +} + +# add this prefix to the COLCON_PREFIX_PATH +_colcon_prefix_sh_prepend_unique_value COLCON_PREFIX_PATH "$_colcon_prefix_sh_COLCON_CURRENT_PREFIX" +unset _colcon_prefix_sh_prepend_unique_value + +# check environment variable for custom Python executable +if [ -n "$COLCON_PYTHON_EXECUTABLE" ]; then + if [ ! -f "$COLCON_PYTHON_EXECUTABLE" ]; then + echo "error: COLCON_PYTHON_EXECUTABLE '$COLCON_PYTHON_EXECUTABLE' doesn't exist" + return 1 + fi + _colcon_python_executable="$COLCON_PYTHON_EXECUTABLE" +else + # try the Python executable known at configure time + _colcon_python_executable="/usr/bin/python3" + # if it doesn't exist try a fall back + if [ ! -f "$_colcon_python_executable" ]; then + if ! /usr/bin/env python3 --version > /dev/null 2> /dev/null; then + echo "error: unable to find python3 executable" + return 1 + fi + _colcon_python_executable=`/usr/bin/env python3 -c "import sys; print(sys.executable)"` + fi +fi + +# function to source another script with conditional trace output +# first argument: the path of the script +_colcon_prefix_sh_source_script() { + if [ -f "$1" ]; then + if [ -n "$COLCON_TRACE" ]; then + echo "# . \"$1\"" + fi + . "$1" + else + echo "not found: \"$1\"" 1>&2 + fi +} + +# get all commands in topological order +_colcon_ordered_commands="$($_colcon_python_executable "$_colcon_prefix_sh_COLCON_CURRENT_PREFIX/_local_setup_util_sh.py" sh)" +unset _colcon_python_executable +if [ -n "$COLCON_TRACE" ]; then + echo "_colcon_prefix_sh_source_script() { + if [ -f \"\$1\" ]; then + if [ -n \"\$COLCON_TRACE\" ]; then + echo \"# . \\\"\$1\\\"\" + fi + . \"\$1\" + else + echo \"not found: \\\"\$1\\\"\" 1>&2 + fi + }" + echo "# Execute generated script:" + echo "# <<<" + echo "${_colcon_ordered_commands}" + echo "# >>>" + echo "unset _colcon_prefix_sh_source_script" +fi +eval "${_colcon_ordered_commands}" +unset _colcon_ordered_commands + +unset _colcon_prefix_sh_source_script + +unset _colcon_prefix_sh_COLCON_CURRENT_PREFIX diff --git a/install/local_setup.zsh b/install/local_setup.zsh new file mode 100644 index 00000000000..b6487102f24 --- /dev/null +++ b/install/local_setup.zsh @@ -0,0 +1,134 @@ +# generated from colcon_zsh/shell/template/prefix.zsh.em + +# This script extends the environment with all packages contained in this +# prefix path. + +# a zsh script is able to determine its own path if necessary +if [ -z "$COLCON_CURRENT_PREFIX" ]; then + _colcon_prefix_zsh_COLCON_CURRENT_PREFIX="$(builtin cd -q "`dirname "${(%):-%N}"`" > /dev/null && pwd)" +else + _colcon_prefix_zsh_COLCON_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" +fi + +# function to convert array-like strings into arrays +# to workaround SH_WORD_SPLIT not being set +_colcon_prefix_zsh_convert_to_array() { + local _listname=$1 + local _dollar="$" + local _split="{=" + local _to_array="(\"$_dollar$_split$_listname}\")" + eval $_listname=$_to_array +} + +# function to prepend a value to a variable +# which uses colons as separators +# duplicates as well as trailing separators are avoided +# first argument: the name of the result variable +# second argument: the value to be prepended +_colcon_prefix_zsh_prepend_unique_value() { + # arguments + _listname="$1" + _value="$2" + + # get values from variable + eval _values=\"\$$_listname\" + # backup the field separator + _colcon_prefix_zsh_prepend_unique_value_IFS="$IFS" + IFS=":" + # start with the new value + _all_values="$_value" + _contained_value="" + # workaround SH_WORD_SPLIT not being set + _colcon_prefix_zsh_convert_to_array _values + # iterate over existing values in the variable + for _item in $_values; do + # ignore empty strings + if [ -z "$_item" ]; then + continue + fi + # ignore duplicates of _value + if [ "$_item" = "$_value" ]; then + _contained_value=1 + continue + fi + # keep non-duplicate values + _all_values="$_all_values:$_item" + done + unset _item + if [ -z "$_contained_value" ]; then + if [ -n "$COLCON_TRACE" ]; then + if [ "$_all_values" = "$_value" ]; then + echo "export $_listname=$_value" + else + echo "export $_listname=$_value:\$$_listname" + fi + fi + fi + unset _contained_value + # restore the field separator + IFS="$_colcon_prefix_zsh_prepend_unique_value_IFS" + unset _colcon_prefix_zsh_prepend_unique_value_IFS + # export the updated variable + eval export $_listname=\"$_all_values\" + unset _all_values + unset _values + + unset _value + unset _listname +} + +# add this prefix to the COLCON_PREFIX_PATH +_colcon_prefix_zsh_prepend_unique_value COLCON_PREFIX_PATH "$_colcon_prefix_zsh_COLCON_CURRENT_PREFIX" +unset _colcon_prefix_zsh_prepend_unique_value +unset _colcon_prefix_zsh_convert_to_array + +# check environment variable for custom Python executable +if [ -n "$COLCON_PYTHON_EXECUTABLE" ]; then + if [ ! -f "$COLCON_PYTHON_EXECUTABLE" ]; then + echo "error: COLCON_PYTHON_EXECUTABLE '$COLCON_PYTHON_EXECUTABLE' doesn't exist" + return 1 + fi + _colcon_python_executable="$COLCON_PYTHON_EXECUTABLE" +else + # try the Python executable known at configure time + _colcon_python_executable="/usr/bin/python3" + # if it doesn't exist try a fall back + if [ ! -f "$_colcon_python_executable" ]; then + if ! /usr/bin/env python3 --version > /dev/null 2> /dev/null; then + echo "error: unable to find python3 executable" + return 1 + fi + _colcon_python_executable=`/usr/bin/env python3 -c "import sys; print(sys.executable)"` + fi +fi + +# function to source another script with conditional trace output +# first argument: the path of the script +_colcon_prefix_sh_source_script() { + if [ -f "$1" ]; then + if [ -n "$COLCON_TRACE" ]; then + echo "# . \"$1\"" + fi + . "$1" + else + echo "not found: \"$1\"" 1>&2 + fi +} + +# get all commands in topological order +_colcon_ordered_commands="$($_colcon_python_executable "$_colcon_prefix_zsh_COLCON_CURRENT_PREFIX/_local_setup_util_sh.py" sh zsh)" +unset _colcon_python_executable +if [ -n "$COLCON_TRACE" ]; then + echo "$(declare -f _colcon_prefix_sh_source_script)" + echo "# Execute generated script:" + echo "# <<<" + echo "${_colcon_ordered_commands}" + echo "# >>>" + echo "unset _colcon_prefix_sh_source_script" +fi +eval "${_colcon_ordered_commands}" +unset _colcon_ordered_commands + +unset _colcon_prefix_sh_source_script + +unset _colcon_prefix_zsh_COLCON_CURRENT_PREFIX diff --git a/install/rj_convert/include/rj_convert/ros_convert.hpp b/install/rj_convert/include/rj_convert/ros_convert.hpp new file mode 100644 index 00000000000..81c79e532f5 --- /dev/null +++ b/install/rj_convert/include/rj_convert/ros_convert.hpp @@ -0,0 +1,152 @@ +#pragma once + +#include +#include + +namespace rj_convert { + +template +struct RosConverter { + using T = void; +}; + +/** + * @brief Defines the ROS type associated with a given C++ type. + */ +template +struct AssociatedRosType { + /// @brief The ROS type associated with CppType + using T = void; +}; + +/** + * @brief Defines the C++ type associated with a given ROS type. + */ +template +struct AssociatedCppType { + /// @brief The C++ type associated with RosType + using T = void; +}; + +#define ASSOCIATE_CPP_ROS(CppType, RosType) \ + template <> \ + struct AssociatedRosType { \ + using T = RosType; \ + }; \ + template <> \ + struct AssociatedCppType { \ + using T = CppType; \ + }; + +#define CONVERT_PRIMITIVE(type) \ + template <> \ + struct RosConverter { \ + static type to_ros(const type& value) { return value; } \ + static type from_ros(const type& value) { return value; } \ + }; \ + ASSOCIATE_CPP_ROS(type, type) + +CONVERT_PRIMITIVE(int8_t); +CONVERT_PRIMITIVE(int16_t); +CONVERT_PRIMITIVE(int32_t); +CONVERT_PRIMITIVE(int64_t); + +CONVERT_PRIMITIVE(uint8_t); +CONVERT_PRIMITIVE(uint16_t); +CONVERT_PRIMITIVE(uint32_t); +CONVERT_PRIMITIVE(uint64_t); + +CONVERT_PRIMITIVE(float); +CONVERT_PRIMITIVE(double); + +CONVERT_PRIMITIVE(bool); +CONVERT_PRIMITIVE(std::string); +CONVERT_PRIMITIVE(std::u16string); + +#undef CONVERT_PRIMITIVE + +template +struct AssociatedRosType> { + using T = std::vector::T>; +}; + +template +struct AssociatedCppType> { + using T = std::vector::T>; +}; + +template +struct RosConverter, std::vector> { + static std::vector to_ros(const std::vector& value) { + std::vector result; + result.reserve(value.size()); + std::transform(std::begin(value), std::end(value), + std::back_inserter(result), + RosConverter::to_ros); + return result; + } + + static std::vector from_ros(const std::vector& value) { + std::vector result; + result.reserve(value.size()); + std::transform(std::begin(value), std::end(value), + std::back_inserter(result), + RosConverter::from_ros); + return result; + } +}; + +template +struct AssociatedRosType> { + using T = std::array::T, size>; +}; + +template +struct AssociatedCppType> { + using T = std::array::T, size>; +}; + +template +struct RosConverter, std::array> { + static std::array to_ros( + const std::array& value) { + std::array result; + std::transform(std::begin(value), std::end(value), std::begin(result), + RosConverter::to_ros); + return result; + } + + static std::array from_ros( + const std::array& value) { + std::array result; + std::transform(std::begin(value), std::end(value), std::begin(result), + RosConverter::from_ros); + return result; + } +}; + +template ::T> +void convert_to_ros(const CppType& from, RosType* to) { + *to = RosConverter::to_ros(from); +} + +template ::T> +RosType convert_to_ros(const CppType& from) { + return RosConverter::to_ros(from); +} + +template ::T> +void convert_from_ros(const RosType& from, CppType* to) { + *to = RosConverter::from_ros(from); +} + +template ::T> +CppType convert_from_ros(const RosType& from) { + return RosConverter::from_ros(from); +} + +} // namespace rj_convert \ No newline at end of file diff --git a/install/rj_convert/include/rj_convert/test/ros_convert_testing.hpp b/install/rj_convert/include/rj_convert/test/ros_convert_testing.hpp new file mode 100644 index 00000000000..c99ecc226c2 --- /dev/null +++ b/install/rj_convert/include/rj_convert/test/ros_convert_testing.hpp @@ -0,0 +1,19 @@ +#include + +#include + +template ::T> +void test_lossless_convert_ros_value(const RosType& ros_value) { + EXPECT_EQ((rj_convert::convert_to_ros( + rj_convert::convert_from_ros(ros_value))), + ros_value); +} + +template ::T> +void test_lossless_convert_cpp_value(const CppType& cpp_value) { + EXPECT_EQ((rj_convert::convert_from_ros( + rj_convert::convert_to_ros(cpp_value))), + cpp_value); +} diff --git a/install/rj_convert/share/ament_index/resource_index/package_run_dependencies/rj_convert b/install/rj_convert/share/ament_index/resource_index/package_run_dependencies/rj_convert new file mode 100644 index 00000000000..919056f1220 --- /dev/null +++ b/install/rj_convert/share/ament_index/resource_index/package_run_dependencies/rj_convert @@ -0,0 +1 @@ +rclcpp;eigen3_cmake_module;eigen;ament_cmake_gtest;ament_lint_auto;ament_lint_common \ No newline at end of file diff --git a/install/rj_convert/share/ament_index/resource_index/packages/rj_convert b/install/rj_convert/share/ament_index/resource_index/packages/rj_convert new file mode 100644 index 00000000000..e69de29bb2d diff --git a/install/rj_convert/share/ament_index/resource_index/parent_prefix_path/rj_convert b/install/rj_convert/share/ament_index/resource_index/parent_prefix_path/rj_convert new file mode 100644 index 00000000000..6350bc15a21 --- /dev/null +++ b/install/rj_convert/share/ament_index/resource_index/parent_prefix_path/rj_convert @@ -0,0 +1 @@ +/opt/ros/humble \ No newline at end of file diff --git a/install/rj_convert/share/colcon-core/packages/rj_convert b/install/rj_convert/share/colcon-core/packages/rj_convert new file mode 100644 index 00000000000..68343294b4d --- /dev/null +++ b/install/rj_convert/share/colcon-core/packages/rj_convert @@ -0,0 +1 @@ +eigen:eigen3_cmake_module:rclcpp \ No newline at end of file diff --git a/install/rj_convert/share/rj_convert/cmake/ament_cmake_export_dependencies-extras.cmake b/install/rj_convert/share/rj_convert/cmake/ament_cmake_export_dependencies-extras.cmake new file mode 100644 index 00000000000..ddd258f69e9 --- /dev/null +++ b/install/rj_convert/share/rj_convert/cmake/ament_cmake_export_dependencies-extras.cmake @@ -0,0 +1,92 @@ +# generated from ament_cmake_export_dependencies/cmake/ament_cmake_export_dependencies-extras.cmake.in + +set(_exported_dependencies "rclcpp") + +find_package(ament_cmake_libraries QUIET REQUIRED) + +# find_package() all dependencies +# and append their DEFINITIONS INCLUDE_DIRS, LIBRARIES, and LINK_FLAGS +# variables to rj_convert_DEFINITIONS, rj_convert_INCLUDE_DIRS, +# rj_convert_LIBRARIES, and rj_convert_LINK_FLAGS. +# Additionally collect the direct dependency names in +# rj_convert_DEPENDENCIES as well as the recursive dependency names +# in rj_convert_RECURSIVE_DEPENDENCIES. +if(NOT _exported_dependencies STREQUAL "") + find_package(ament_cmake_core QUIET REQUIRED) + set(rj_convert_DEPENDENCIES ${_exported_dependencies}) + set(rj_convert_RECURSIVE_DEPENDENCIES ${_exported_dependencies}) + set(_libraries) + foreach(_dep ${_exported_dependencies}) + if(NOT ${_dep}_FOUND) + find_package("${_dep}" QUIET REQUIRED) + endif() + # if a package provides modern CMake interface targets use them + # exclusively assuming the classic CMake variables only exist for + # backward compatibility + set(use_modern_cmake FALSE) + if(NOT "${${_dep}_TARGETS}" STREQUAL "") + foreach(_target ${${_dep}_TARGETS}) + # only use actual targets + # in case a package uses this variable for other content + if(TARGET "${_target}") + get_target_property(_include_dirs ${_target} INTERFACE_INCLUDE_DIRECTORIES) + if(_include_dirs) + list_append_unique(rj_convert_INCLUDE_DIRS "${_include_dirs}") + endif() + + get_target_property(_imported_configurations ${_target} IMPORTED_CONFIGURATIONS) + if(_imported_configurations) + string(TOUPPER "${_imported_configurations}" _imported_configurations) + if(DEBUG_CONFIGURATIONS) + string(TOUPPER "${DEBUG_CONFIGURATIONS}" _debug_configurations_uppercase) + else() + set(_debug_configurations_uppercase "DEBUG") + endif() + foreach(_imported_config ${_imported_configurations}) + get_target_property(_imported_implib ${_target} IMPORTED_IMPLIB_${_imported_config}) + if(_imported_implib) + set(_imported_implib_config "optimized") + if(${_imported_config} IN_LIST _debug_configurations_uppercase) + set(_imported_implib_config "debug") + endif() + list(APPEND _libraries ${_imported_implib_config} ${_imported_implib}) + else() + get_target_property(_imported_location ${_target} IMPORTED_LOCATION_${_imported_config}) + if(_imported_location) + list(APPEND _libraries "${_imported_location}") + endif() + endif() + endforeach() + endif() + + get_target_property(_link_libraries ${_target} INTERFACE_LINK_LIBRARIES) + if(_link_libraries) + list(APPEND _libraries "${_link_libraries}") + endif() + set(use_modern_cmake TRUE) + endif() + endforeach() + endif() + if(NOT use_modern_cmake) + if(${_dep}_DEFINITIONS) + list_append_unique(rj_convert_DEFINITIONS "${${_dep}_DEFINITIONS}") + endif() + if(${_dep}_INCLUDE_DIRS) + list_append_unique(rj_convert_INCLUDE_DIRS "${${_dep}_INCLUDE_DIRS}") + endif() + if(${_dep}_LIBRARIES) + list(APPEND _libraries "${${_dep}_LIBRARIES}") + endif() + if(${_dep}_LINK_FLAGS) + list_append_unique(rj_convert_LINK_FLAGS "${${_dep}_LINK_FLAGS}") + endif() + if(${_dep}_RECURSIVE_DEPENDENCIES) + list_append_unique(rj_convert_RECURSIVE_DEPENDENCIES "${${_dep}_RECURSIVE_DEPENDENCIES}") + endif() + endif() + if(_libraries) + ament_libraries_deduplicate(_libraries "${_libraries}") + list(APPEND rj_convert_LIBRARIES "${_libraries}") + endif() + endforeach() +endif() diff --git a/install/rj_convert/share/rj_convert/cmake/rj_convertConfig-version.cmake b/install/rj_convert/share/rj_convert/cmake/rj_convertConfig-version.cmake new file mode 100644 index 00000000000..dfe07300c3a --- /dev/null +++ b/install/rj_convert/share/rj_convert/cmake/rj_convertConfig-version.cmake @@ -0,0 +1,14 @@ +# generated from ament/cmake/core/templates/nameConfig-version.cmake.in +set(PACKAGE_VERSION "0.1.0") + +set(PACKAGE_VERSION_EXACT False) +set(PACKAGE_VERSION_COMPATIBLE False) + +if("${PACKAGE_FIND_VERSION}" VERSION_EQUAL "${PACKAGE_VERSION}") + set(PACKAGE_VERSION_EXACT True) + set(PACKAGE_VERSION_COMPATIBLE True) +endif() + +if("${PACKAGE_FIND_VERSION}" VERSION_LESS "${PACKAGE_VERSION}") + set(PACKAGE_VERSION_COMPATIBLE True) +endif() diff --git a/install/rj_convert/share/rj_convert/cmake/rj_convertConfig.cmake b/install/rj_convert/share/rj_convert/cmake/rj_convertConfig.cmake new file mode 100644 index 00000000000..ecb5875b12a --- /dev/null +++ b/install/rj_convert/share/rj_convert/cmake/rj_convertConfig.cmake @@ -0,0 +1,42 @@ +# generated from ament/cmake/core/templates/nameConfig.cmake.in + +# prevent multiple inclusion +if(_rj_convert_CONFIG_INCLUDED) + # ensure to keep the found flag the same + if(NOT DEFINED rj_convert_FOUND) + # explicitly set it to FALSE, otherwise CMake will set it to TRUE + set(rj_convert_FOUND FALSE) + elseif(NOT rj_convert_FOUND) + # use separate condition to avoid uninitialized variable warning + set(rj_convert_FOUND FALSE) + endif() + return() +endif() +set(_rj_convert_CONFIG_INCLUDED TRUE) + +# output package information +if(NOT rj_convert_FIND_QUIETLY) + message(STATUS "Found rj_convert: 0.1.0 (${rj_convert_DIR})") +endif() + +# warn when using a deprecated package +if(NOT "" STREQUAL "") + set(_msg "Package 'rj_convert' is deprecated") + # append custom deprecation text if available + if(NOT "" STREQUAL "TRUE") + set(_msg "${_msg} ()") + endif() + # optionally quiet the deprecation message + if(NOT ${rj_convert_DEPRECATED_QUIET}) + message(DEPRECATION "${_msg}") + endif() +endif() + +# flag package as ament-based to distinguish it after being find_package()-ed +set(rj_convert_FOUND_AMENT_PACKAGE TRUE) + +# include all config extra files +set(_extras "ament_cmake_export_dependencies-extras.cmake") +foreach(_extra ${_extras}) + include("${rj_convert_DIR}/${_extra}") +endforeach() diff --git a/install/rj_convert/share/rj_convert/environment/ament_prefix_path.dsv b/install/rj_convert/share/rj_convert/environment/ament_prefix_path.dsv new file mode 100644 index 00000000000..79d4c95b55c --- /dev/null +++ b/install/rj_convert/share/rj_convert/environment/ament_prefix_path.dsv @@ -0,0 +1 @@ +prepend-non-duplicate;AMENT_PREFIX_PATH; diff --git a/install/rj_convert/share/rj_convert/environment/ament_prefix_path.sh b/install/rj_convert/share/rj_convert/environment/ament_prefix_path.sh new file mode 100644 index 00000000000..02e441b7535 --- /dev/null +++ b/install/rj_convert/share/rj_convert/environment/ament_prefix_path.sh @@ -0,0 +1,4 @@ +# copied from +# ament_cmake_core/cmake/environment_hooks/environment/ament_prefix_path.sh + +ament_prepend_unique_value AMENT_PREFIX_PATH "$AMENT_CURRENT_PREFIX" diff --git a/install/rj_convert/share/rj_convert/environment/path.dsv b/install/rj_convert/share/rj_convert/environment/path.dsv new file mode 100644 index 00000000000..b94426af081 --- /dev/null +++ b/install/rj_convert/share/rj_convert/environment/path.dsv @@ -0,0 +1 @@ +prepend-non-duplicate-if-exists;PATH;bin diff --git a/install/rj_convert/share/rj_convert/environment/path.sh b/install/rj_convert/share/rj_convert/environment/path.sh new file mode 100644 index 00000000000..e59b749a890 --- /dev/null +++ b/install/rj_convert/share/rj_convert/environment/path.sh @@ -0,0 +1,5 @@ +# copied from ament_cmake_core/cmake/environment_hooks/environment/path.sh + +if [ -d "$AMENT_CURRENT_PREFIX/bin" ]; then + ament_prepend_unique_value PATH "$AMENT_CURRENT_PREFIX/bin" +fi diff --git a/install/rj_convert/share/rj_convert/hook/cmake_prefix_path.dsv b/install/rj_convert/share/rj_convert/hook/cmake_prefix_path.dsv new file mode 100644 index 00000000000..e119f32cba9 --- /dev/null +++ b/install/rj_convert/share/rj_convert/hook/cmake_prefix_path.dsv @@ -0,0 +1 @@ +prepend-non-duplicate;CMAKE_PREFIX_PATH; diff --git a/install/rj_convert/share/rj_convert/hook/cmake_prefix_path.ps1 b/install/rj_convert/share/rj_convert/hook/cmake_prefix_path.ps1 new file mode 100644 index 00000000000..d03facc1a43 --- /dev/null +++ b/install/rj_convert/share/rj_convert/hook/cmake_prefix_path.ps1 @@ -0,0 +1,3 @@ +# generated from colcon_powershell/shell/template/hook_prepend_value.ps1.em + +colcon_prepend_unique_value CMAKE_PREFIX_PATH "$env:COLCON_CURRENT_PREFIX" diff --git a/install/rj_convert/share/rj_convert/hook/cmake_prefix_path.sh b/install/rj_convert/share/rj_convert/hook/cmake_prefix_path.sh new file mode 100644 index 00000000000..a948e685ba5 --- /dev/null +++ b/install/rj_convert/share/rj_convert/hook/cmake_prefix_path.sh @@ -0,0 +1,3 @@ +# generated from colcon_core/shell/template/hook_prepend_value.sh.em + +_colcon_prepend_unique_value CMAKE_PREFIX_PATH "$COLCON_CURRENT_PREFIX" diff --git a/install/rj_convert/share/rj_convert/local_setup.bash b/install/rj_convert/share/rj_convert/local_setup.bash new file mode 100644 index 00000000000..49782f2461d --- /dev/null +++ b/install/rj_convert/share/rj_convert/local_setup.bash @@ -0,0 +1,46 @@ +# generated from ament_package/template/package_level/local_setup.bash.in + +# source local_setup.sh from same directory as this file +_this_path=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" && pwd) +# provide AMENT_CURRENT_PREFIX to shell script +AMENT_CURRENT_PREFIX=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`/../.." && pwd) +# store AMENT_CURRENT_PREFIX to restore it before each environment hook +_package_local_setup_AMENT_CURRENT_PREFIX=$AMENT_CURRENT_PREFIX + +# trace output +if [ -n "$AMENT_TRACE_SETUP_FILES" ]; then + echo "# . \"$_this_path/local_setup.sh\"" +fi +. "$_this_path/local_setup.sh" +unset _this_path + +# unset AMENT_ENVIRONMENT_HOOKS +# if not appending to them for return +if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then + unset AMENT_ENVIRONMENT_HOOKS +fi + +# restore AMENT_CURRENT_PREFIX before evaluating the environment hooks +AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX +# list all environment hooks of this package + +# source all shell-specific environment hooks of this package +# if not returning them +if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then + _package_local_setup_IFS=$IFS + IFS=":" + for _hook in $AMENT_ENVIRONMENT_HOOKS; do + # restore AMENT_CURRENT_PREFIX for each environment hook + AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX + # restore IFS before sourcing other files + IFS=$_package_local_setup_IFS + . "$_hook" + done + unset _hook + IFS=$_package_local_setup_IFS + unset _package_local_setup_IFS + unset AMENT_ENVIRONMENT_HOOKS +fi + +unset _package_local_setup_AMENT_CURRENT_PREFIX +unset AMENT_CURRENT_PREFIX diff --git a/install/rj_convert/share/rj_convert/local_setup.dsv b/install/rj_convert/share/rj_convert/local_setup.dsv new file mode 100644 index 00000000000..65fce8c9915 --- /dev/null +++ b/install/rj_convert/share/rj_convert/local_setup.dsv @@ -0,0 +1,2 @@ +source;share/rj_convert/environment/ament_prefix_path.sh +source;share/rj_convert/environment/path.sh diff --git a/install/rj_convert/share/rj_convert/local_setup.sh b/install/rj_convert/share/rj_convert/local_setup.sh new file mode 100644 index 00000000000..4f7791184d5 --- /dev/null +++ b/install/rj_convert/share/rj_convert/local_setup.sh @@ -0,0 +1,184 @@ +# generated from ament_package/template/package_level/local_setup.sh.in + +# since this file is sourced use either the provided AMENT_CURRENT_PREFIX +# or fall back to the destination set at configure time +: ${AMENT_CURRENT_PREFIX:="/root/robocup-software/install/rj_convert"} +if [ ! -d "$AMENT_CURRENT_PREFIX" ]; then + if [ -z "$COLCON_CURRENT_PREFIX" ]; then + echo "The compile time prefix path '$AMENT_CURRENT_PREFIX' doesn't " \ + "exist. Consider sourcing a different extension than '.sh'." 1>&2 + else + AMENT_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" + fi +fi + +# function to append values to environment variables +# using colons as separators and avoiding leading separators +ament_append_value() { + # arguments + _listname="$1" + _value="$2" + #echo "listname $_listname" + #eval echo "list value \$$_listname" + #echo "value $_value" + + # avoid leading separator + eval _values=\"\$$_listname\" + if [ -z "$_values" ]; then + eval export $_listname=\"$_value\" + #eval echo "set list \$$_listname" + else + # field separator must not be a colon + _ament_append_value_IFS=$IFS + unset IFS + eval export $_listname=\"\$$_listname:$_value\" + #eval echo "append list \$$_listname" + IFS=$_ament_append_value_IFS + unset _ament_append_value_IFS + fi + unset _values + + unset _value + unset _listname +} + +# function to append non-duplicate values to environment variables +# using colons as separators and avoiding leading separators +ament_append_unique_value() { + # arguments + _listname=$1 + _value=$2 + #echo "listname $_listname" + #eval echo "list value \$$_listname" + #echo "value $_value" + + # check if the list contains the value + eval _values=\$$_listname + _duplicate= + _ament_append_unique_value_IFS=$IFS + IFS=":" + if [ "$AMENT_SHELL" = "zsh" ]; then + ament_zsh_to_array _values + fi + for _item in $_values; do + # ignore empty strings + if [ -z "$_item" ]; then + continue + fi + if [ $_item = $_value ]; then + _duplicate=1 + fi + done + unset _item + + # append only non-duplicates + if [ -z "$_duplicate" ]; then + # avoid leading separator + if [ -z "$_values" ]; then + eval $_listname=\"$_value\" + #eval echo "set list \$$_listname" + else + # field separator must not be a colon + unset IFS + eval $_listname=\"\$$_listname:$_value\" + #eval echo "append list \$$_listname" + fi + fi + IFS=$_ament_append_unique_value_IFS + unset _ament_append_unique_value_IFS + unset _duplicate + unset _values + + unset _value + unset _listname +} + +# function to prepend non-duplicate values to environment variables +# using colons as separators and avoiding trailing separators +ament_prepend_unique_value() { + # arguments + _listname="$1" + _value="$2" + #echo "listname $_listname" + #eval echo "list value \$$_listname" + #echo "value $_value" + + # check if the list contains the value + eval _values=\"\$$_listname\" + _duplicate= + _ament_prepend_unique_value_IFS=$IFS + IFS=":" + if [ "$AMENT_SHELL" = "zsh" ]; then + ament_zsh_to_array _values + fi + for _item in $_values; do + # ignore empty strings + if [ -z "$_item" ]; then + continue + fi + if [ "$_item" = "$_value" ]; then + _duplicate=1 + fi + done + unset _item + + # prepend only non-duplicates + if [ -z "$_duplicate" ]; then + # avoid trailing separator + if [ -z "$_values" ]; then + eval export $_listname=\"$_value\" + #eval echo "set list \$$_listname" + else + # field separator must not be a colon + unset IFS + eval export $_listname=\"$_value:\$$_listname\" + #eval echo "prepend list \$$_listname" + fi + fi + IFS=$_ament_prepend_unique_value_IFS + unset _ament_prepend_unique_value_IFS + unset _duplicate + unset _values + + unset _value + unset _listname +} + +# unset AMENT_ENVIRONMENT_HOOKS +# if not appending to them for return +if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then + unset AMENT_ENVIRONMENT_HOOKS +fi + +# list all environment hooks of this package +ament_append_value AMENT_ENVIRONMENT_HOOKS "$AMENT_CURRENT_PREFIX/share/rj_convert/environment/ament_prefix_path.sh" +ament_append_value AMENT_ENVIRONMENT_HOOKS "$AMENT_CURRENT_PREFIX/share/rj_convert/environment/path.sh" + +# source all shell-specific environment hooks of this package +# if not returning them +if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then + _package_local_setup_IFS=$IFS + IFS=":" + if [ "$AMENT_SHELL" = "zsh" ]; then + ament_zsh_to_array AMENT_ENVIRONMENT_HOOKS + fi + for _hook in $AMENT_ENVIRONMENT_HOOKS; do + if [ -f "$_hook" ]; then + # restore IFS before sourcing other files + IFS=$_package_local_setup_IFS + # trace output + if [ -n "$AMENT_TRACE_SETUP_FILES" ]; then + echo "# . \"$_hook\"" + fi + . "$_hook" + fi + done + unset _hook + IFS=$_package_local_setup_IFS + unset _package_local_setup_IFS + unset AMENT_ENVIRONMENT_HOOKS +fi + +# reset AMENT_CURRENT_PREFIX after each package +# allowing to source multiple package-level setup files +unset AMENT_CURRENT_PREFIX diff --git a/install/rj_convert/share/rj_convert/local_setup.zsh b/install/rj_convert/share/rj_convert/local_setup.zsh new file mode 100644 index 00000000000..fe161be53dc --- /dev/null +++ b/install/rj_convert/share/rj_convert/local_setup.zsh @@ -0,0 +1,59 @@ +# generated from ament_package/template/package_level/local_setup.zsh.in + +AMENT_SHELL=zsh + +# source local_setup.sh from same directory as this file +_this_path=$(builtin cd -q "`dirname "${(%):-%N}"`" > /dev/null && pwd) +# provide AMENT_CURRENT_PREFIX to shell script +AMENT_CURRENT_PREFIX=$(builtin cd -q "`dirname "${(%):-%N}"`/../.." > /dev/null && pwd) +# store AMENT_CURRENT_PREFIX to restore it before each environment hook +_package_local_setup_AMENT_CURRENT_PREFIX=$AMENT_CURRENT_PREFIX + +# function to convert array-like strings into arrays +# to wordaround SH_WORD_SPLIT not being set +ament_zsh_to_array() { + local _listname=$1 + local _dollar="$" + local _split="{=" + local _to_array="(\"$_dollar$_split$_listname}\")" + eval $_listname=$_to_array +} + +# trace output +if [ -n "$AMENT_TRACE_SETUP_FILES" ]; then + echo "# . \"$_this_path/local_setup.sh\"" +fi +# the package-level local_setup file unsets AMENT_CURRENT_PREFIX +. "$_this_path/local_setup.sh" +unset _this_path + +# unset AMENT_ENVIRONMENT_HOOKS +# if not appending to them for return +if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then + unset AMENT_ENVIRONMENT_HOOKS +fi + +# restore AMENT_CURRENT_PREFIX before evaluating the environment hooks +AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX +# list all environment hooks of this package + +# source all shell-specific environment hooks of this package +# if not returning them +if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then + _package_local_setup_IFS=$IFS + IFS=":" + for _hook in $AMENT_ENVIRONMENT_HOOKS; do + # restore AMENT_CURRENT_PREFIX for each environment hook + AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX + # restore IFS before sourcing other files + IFS=$_package_local_setup_IFS + . "$_hook" + done + unset _hook + IFS=$_package_local_setup_IFS + unset _package_local_setup_IFS + unset AMENT_ENVIRONMENT_HOOKS +fi + +unset _package_local_setup_AMENT_CURRENT_PREFIX +unset AMENT_CURRENT_PREFIX diff --git a/install/rj_convert/share/rj_convert/package.bash b/install/rj_convert/share/rj_convert/package.bash new file mode 100644 index 00000000000..12583671f8c --- /dev/null +++ b/install/rj_convert/share/rj_convert/package.bash @@ -0,0 +1,39 @@ +# generated from colcon_bash/shell/template/package.bash.em + +# This script extends the environment for this package. + +# a bash script is able to determine its own path if necessary +if [ -z "$COLCON_CURRENT_PREFIX" ]; then + # the prefix is two levels up from the package specific share directory + _colcon_package_bash_COLCON_CURRENT_PREFIX="$(builtin cd "`dirname "${BASH_SOURCE[0]}"`/../.." > /dev/null && pwd)" +else + _colcon_package_bash_COLCON_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" +fi + +# function to source another script with conditional trace output +# first argument: the path of the script +# additional arguments: arguments to the script +_colcon_package_bash_source_script() { + if [ -f "$1" ]; then + if [ -n "$COLCON_TRACE" ]; then + echo "# . \"$1\"" + fi + . "$@" + else + echo "not found: \"$1\"" 1>&2 + fi +} + +# source sh script of this package +_colcon_package_bash_source_script "$_colcon_package_bash_COLCON_CURRENT_PREFIX/share/rj_convert/package.sh" + +# setting COLCON_CURRENT_PREFIX avoids determining the prefix in the sourced scripts +COLCON_CURRENT_PREFIX="$_colcon_package_bash_COLCON_CURRENT_PREFIX" + +# source bash hooks +_colcon_package_bash_source_script "$COLCON_CURRENT_PREFIX/share/rj_convert/local_setup.bash" + +unset COLCON_CURRENT_PREFIX + +unset _colcon_package_bash_source_script +unset _colcon_package_bash_COLCON_CURRENT_PREFIX diff --git a/install/rj_convert/share/rj_convert/package.dsv b/install/rj_convert/share/rj_convert/package.dsv new file mode 100644 index 00000000000..fcee619f25b --- /dev/null +++ b/install/rj_convert/share/rj_convert/package.dsv @@ -0,0 +1,8 @@ +source;share/rj_convert/hook/cmake_prefix_path.ps1 +source;share/rj_convert/hook/cmake_prefix_path.dsv +source;share/rj_convert/hook/cmake_prefix_path.sh +source;share/rj_convert/local_setup.bash +source;share/rj_convert/local_setup.dsv +source;share/rj_convert/local_setup.ps1 +source;share/rj_convert/local_setup.sh +source;share/rj_convert/local_setup.zsh diff --git a/install/rj_convert/share/rj_convert/package.ps1 b/install/rj_convert/share/rj_convert/package.ps1 new file mode 100644 index 00000000000..149bc91cc05 --- /dev/null +++ b/install/rj_convert/share/rj_convert/package.ps1 @@ -0,0 +1,116 @@ +# generated from colcon_powershell/shell/template/package.ps1.em + +# function to append a value to a variable +# which uses colons as separators +# duplicates as well as leading separators are avoided +# first argument: the name of the result variable +# second argument: the value to be prepended +function colcon_append_unique_value { + param ( + $_listname, + $_value + ) + + # get values from variable + if (Test-Path Env:$_listname) { + $_values=(Get-Item env:$_listname).Value + } else { + $_values="" + } + $_duplicate="" + # start with no values + $_all_values="" + # iterate over existing values in the variable + if ($_values) { + $_values.Split(";") | ForEach { + # not an empty string + if ($_) { + # not a duplicate of _value + if ($_ -eq $_value) { + $_duplicate="1" + } + if ($_all_values) { + $_all_values="${_all_values};$_" + } else { + $_all_values="$_" + } + } + } + } + # append only non-duplicates + if (!$_duplicate) { + # avoid leading separator + if ($_all_values) { + $_all_values="${_all_values};${_value}" + } else { + $_all_values="${_value}" + } + } + + # export the updated variable + Set-Item env:\$_listname -Value "$_all_values" +} + +# function to prepend a value to a variable +# which uses colons as separators +# duplicates as well as trailing separators are avoided +# first argument: the name of the result variable +# second argument: the value to be prepended +function colcon_prepend_unique_value { + param ( + $_listname, + $_value + ) + + # get values from variable + if (Test-Path Env:$_listname) { + $_values=(Get-Item env:$_listname).Value + } else { + $_values="" + } + # start with the new value + $_all_values="$_value" + # iterate over existing values in the variable + if ($_values) { + $_values.Split(";") | ForEach { + # not an empty string + if ($_) { + # not a duplicate of _value + if ($_ -ne $_value) { + # keep non-duplicate values + $_all_values="${_all_values};$_" + } + } + } + } + # export the updated variable + Set-Item env:\$_listname -Value "$_all_values" +} + +# function to source another script with conditional trace output +# first argument: the path of the script +# additional arguments: arguments to the script +function colcon_package_source_powershell_script { + param ( + $_colcon_package_source_powershell_script + ) + # source script with conditional trace output + if (Test-Path $_colcon_package_source_powershell_script) { + if ($env:COLCON_TRACE) { + echo ". '$_colcon_package_source_powershell_script'" + } + . "$_colcon_package_source_powershell_script" + } else { + Write-Error "not found: '$_colcon_package_source_powershell_script'" + } +} + + +# a powershell script is able to determine its own path +# the prefix is two levels up from the package specific share directory +$env:COLCON_CURRENT_PREFIX=(Get-Item $PSCommandPath).Directory.Parent.Parent.FullName + +colcon_package_source_powershell_script "$env:COLCON_CURRENT_PREFIX\share/rj_convert/hook/cmake_prefix_path.ps1" +colcon_package_source_powershell_script "$env:COLCON_CURRENT_PREFIX\share/rj_convert/local_setup.ps1" + +Remove-Item Env:\COLCON_CURRENT_PREFIX diff --git a/install/rj_convert/share/rj_convert/package.sh b/install/rj_convert/share/rj_convert/package.sh new file mode 100644 index 00000000000..a2dd2f7bb2f --- /dev/null +++ b/install/rj_convert/share/rj_convert/package.sh @@ -0,0 +1,87 @@ +# generated from colcon_core/shell/template/package.sh.em + +# This script extends the environment for this package. + +# function to prepend a value to a variable +# which uses colons as separators +# duplicates as well as trailing separators are avoided +# first argument: the name of the result variable +# second argument: the value to be prepended +_colcon_prepend_unique_value() { + # arguments + _listname="$1" + _value="$2" + + # get values from variable + eval _values=\"\$$_listname\" + # backup the field separator + _colcon_prepend_unique_value_IFS=$IFS + IFS=":" + # start with the new value + _all_values="$_value" + # workaround SH_WORD_SPLIT not being set in zsh + if [ "$(command -v colcon_zsh_convert_to_array)" ]; then + colcon_zsh_convert_to_array _values + fi + # iterate over existing values in the variable + for _item in $_values; do + # ignore empty strings + if [ -z "$_item" ]; then + continue + fi + # ignore duplicates of _value + if [ "$_item" = "$_value" ]; then + continue + fi + # keep non-duplicate values + _all_values="$_all_values:$_item" + done + unset _item + # restore the field separator + IFS=$_colcon_prepend_unique_value_IFS + unset _colcon_prepend_unique_value_IFS + # export the updated variable + eval export $_listname=\"$_all_values\" + unset _all_values + unset _values + + unset _value + unset _listname +} + +# since a plain shell script can't determine its own path when being sourced +# either use the provided COLCON_CURRENT_PREFIX +# or fall back to the build time prefix (if it exists) +_colcon_package_sh_COLCON_CURRENT_PREFIX="/root/robocup-software/install/rj_convert" +if [ -z "$COLCON_CURRENT_PREFIX" ]; then + if [ ! -d "$_colcon_package_sh_COLCON_CURRENT_PREFIX" ]; then + echo "The build time path \"$_colcon_package_sh_COLCON_CURRENT_PREFIX\" doesn't exist. Either source a script for a different shell or set the environment variable \"COLCON_CURRENT_PREFIX\" explicitly." 1>&2 + unset _colcon_package_sh_COLCON_CURRENT_PREFIX + return 1 + fi + COLCON_CURRENT_PREFIX="$_colcon_package_sh_COLCON_CURRENT_PREFIX" +fi +unset _colcon_package_sh_COLCON_CURRENT_PREFIX + +# function to source another script with conditional trace output +# first argument: the path of the script +# additional arguments: arguments to the script +_colcon_package_sh_source_script() { + if [ -f "$1" ]; then + if [ -n "$COLCON_TRACE" ]; then + echo "# . \"$1\"" + fi + . "$@" + else + echo "not found: \"$1\"" 1>&2 + fi +} + +# source sh hooks +_colcon_package_sh_source_script "$COLCON_CURRENT_PREFIX/share/rj_convert/hook/cmake_prefix_path.sh" +_colcon_package_sh_source_script "$COLCON_CURRENT_PREFIX/share/rj_convert/local_setup.sh" + +unset _colcon_package_sh_source_script +unset COLCON_CURRENT_PREFIX + +# do not unset _colcon_prepend_unique_value since it might be used by non-primary shell hooks diff --git a/install/rj_convert/share/rj_convert/package.xml b/install/rj_convert/share/rj_convert/package.xml new file mode 100644 index 00000000000..41560f7d37a --- /dev/null +++ b/install/rj_convert/share/rj_convert/package.xml @@ -0,0 +1,25 @@ + + + rj_convert + 0.1.0 + Header-only conversion utilities for ROS2 messages + RoboCup Software Team, RoboJackets + Apache-2.0 + + + ament_cmake + + + rclcpp + eigen3_cmake_module + eigen + + + ament_cmake_gtest + ament_lint_auto + ament_lint_common + + + ament_cmake + + diff --git a/install/rj_convert/share/rj_convert/package.zsh b/install/rj_convert/share/rj_convert/package.zsh new file mode 100644 index 00000000000..7857d03266b --- /dev/null +++ b/install/rj_convert/share/rj_convert/package.zsh @@ -0,0 +1,50 @@ +# generated from colcon_zsh/shell/template/package.zsh.em + +# This script extends the environment for this package. + +# a zsh script is able to determine its own path if necessary +if [ -z "$COLCON_CURRENT_PREFIX" ]; then + # the prefix is two levels up from the package specific share directory + _colcon_package_zsh_COLCON_CURRENT_PREFIX="$(builtin cd -q "`dirname "${(%):-%N}"`/../.." > /dev/null && pwd)" +else + _colcon_package_zsh_COLCON_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" +fi + +# function to source another script with conditional trace output +# first argument: the path of the script +# additional arguments: arguments to the script +_colcon_package_zsh_source_script() { + if [ -f "$1" ]; then + if [ -n "$COLCON_TRACE" ]; then + echo "# . \"$1\"" + fi + . "$@" + else + echo "not found: \"$1\"" 1>&2 + fi +} + +# function to convert array-like strings into arrays +# to workaround SH_WORD_SPLIT not being set +colcon_zsh_convert_to_array() { + local _listname=$1 + local _dollar="$" + local _split="{=" + local _to_array="(\"$_dollar$_split$_listname}\")" + eval $_listname=$_to_array +} + +# source sh script of this package +_colcon_package_zsh_source_script "$_colcon_package_zsh_COLCON_CURRENT_PREFIX/share/rj_convert/package.sh" +unset convert_zsh_to_array + +# setting COLCON_CURRENT_PREFIX avoids determining the prefix in the sourced scripts +COLCON_CURRENT_PREFIX="$_colcon_package_zsh_COLCON_CURRENT_PREFIX" + +# source zsh hooks +_colcon_package_zsh_source_script "$COLCON_CURRENT_PREFIX/share/rj_convert/local_setup.zsh" + +unset COLCON_CURRENT_PREFIX + +unset _colcon_package_zsh_source_script +unset _colcon_package_zsh_COLCON_CURRENT_PREFIX diff --git a/install/setup.bash b/install/setup.bash new file mode 100644 index 00000000000..10ea0f7c07f --- /dev/null +++ b/install/setup.bash @@ -0,0 +1,31 @@ +# generated from colcon_bash/shell/template/prefix_chain.bash.em + +# This script extends the environment with the environment of other prefix +# paths which were sourced when this file was generated as well as all packages +# contained in this prefix path. + +# function to source another script with conditional trace output +# first argument: the path of the script +_colcon_prefix_chain_bash_source_script() { + if [ -f "$1" ]; then + if [ -n "$COLCON_TRACE" ]; then + echo "# . \"$1\"" + fi + . "$1" + else + echo "not found: \"$1\"" 1>&2 + fi +} + +# source chained prefixes +# setting COLCON_CURRENT_PREFIX avoids determining the prefix in the sourced script +COLCON_CURRENT_PREFIX="/opt/ros/humble" +_colcon_prefix_chain_bash_source_script "$COLCON_CURRENT_PREFIX/local_setup.bash" + +# source this prefix +# setting COLCON_CURRENT_PREFIX avoids determining the prefix in the sourced script +COLCON_CURRENT_PREFIX="$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd)" +_colcon_prefix_chain_bash_source_script "$COLCON_CURRENT_PREFIX/local_setup.bash" + +unset COLCON_CURRENT_PREFIX +unset _colcon_prefix_chain_bash_source_script diff --git a/install/setup.ps1 b/install/setup.ps1 new file mode 100644 index 00000000000..558e9b9e627 --- /dev/null +++ b/install/setup.ps1 @@ -0,0 +1,29 @@ +# generated from colcon_powershell/shell/template/prefix_chain.ps1.em + +# This script extends the environment with the environment of other prefix +# paths which were sourced when this file was generated as well as all packages +# contained in this prefix path. + +# function to source another script with conditional trace output +# first argument: the path of the script +function _colcon_prefix_chain_powershell_source_script { + param ( + $_colcon_prefix_chain_powershell_source_script_param + ) + # source script with conditional trace output + if (Test-Path $_colcon_prefix_chain_powershell_source_script_param) { + if ($env:COLCON_TRACE) { + echo ". '$_colcon_prefix_chain_powershell_source_script_param'" + } + . "$_colcon_prefix_chain_powershell_source_script_param" + } else { + Write-Error "not found: '$_colcon_prefix_chain_powershell_source_script_param'" + } +} + +# source chained prefixes +_colcon_prefix_chain_powershell_source_script "/opt/ros/humble\local_setup.ps1" + +# source this prefix +$env:COLCON_CURRENT_PREFIX=(Split-Path $PSCommandPath -Parent) +_colcon_prefix_chain_powershell_source_script "$env:COLCON_CURRENT_PREFIX\local_setup.ps1" diff --git a/install/setup.sh b/install/setup.sh new file mode 100644 index 00000000000..e715cb09849 --- /dev/null +++ b/install/setup.sh @@ -0,0 +1,45 @@ +# generated from colcon_core/shell/template/prefix_chain.sh.em + +# This script extends the environment with the environment of other prefix +# paths which were sourced when this file was generated as well as all packages +# contained in this prefix path. + +# since a plain shell script can't determine its own path when being sourced +# either use the provided COLCON_CURRENT_PREFIX +# or fall back to the build time prefix (if it exists) +_colcon_prefix_chain_sh_COLCON_CURRENT_PREFIX=/root/robocup-software/install +if [ ! -z "$COLCON_CURRENT_PREFIX" ]; then + _colcon_prefix_chain_sh_COLCON_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" +elif [ ! -d "$_colcon_prefix_chain_sh_COLCON_CURRENT_PREFIX" ]; then + echo "The build time path \"$_colcon_prefix_chain_sh_COLCON_CURRENT_PREFIX\" doesn't exist. Either source a script for a different shell or set the environment variable \"COLCON_CURRENT_PREFIX\" explicitly." 1>&2 + unset _colcon_prefix_chain_sh_COLCON_CURRENT_PREFIX + return 1 +fi + +# function to source another script with conditional trace output +# first argument: the path of the script +_colcon_prefix_chain_sh_source_script() { + if [ -f "$1" ]; then + if [ -n "$COLCON_TRACE" ]; then + echo "# . \"$1\"" + fi + . "$1" + else + echo "not found: \"$1\"" 1>&2 + fi +} + +# source chained prefixes +# setting COLCON_CURRENT_PREFIX avoids relying on the build time prefix of the sourced script +COLCON_CURRENT_PREFIX="/opt/ros/humble" +_colcon_prefix_chain_sh_source_script "$COLCON_CURRENT_PREFIX/local_setup.sh" + + +# source this prefix +# setting COLCON_CURRENT_PREFIX avoids relying on the build time prefix of the sourced script +COLCON_CURRENT_PREFIX="$_colcon_prefix_chain_sh_COLCON_CURRENT_PREFIX" +_colcon_prefix_chain_sh_source_script "$COLCON_CURRENT_PREFIX/local_setup.sh" + +unset _colcon_prefix_chain_sh_COLCON_CURRENT_PREFIX +unset _colcon_prefix_chain_sh_source_script +unset COLCON_CURRENT_PREFIX diff --git a/install/setup.zsh b/install/setup.zsh new file mode 100644 index 00000000000..54799fde6f8 --- /dev/null +++ b/install/setup.zsh @@ -0,0 +1,31 @@ +# generated from colcon_zsh/shell/template/prefix_chain.zsh.em + +# This script extends the environment with the environment of other prefix +# paths which were sourced when this file was generated as well as all packages +# contained in this prefix path. + +# function to source another script with conditional trace output +# first argument: the path of the script +_colcon_prefix_chain_zsh_source_script() { + if [ -f "$1" ]; then + if [ -n "$COLCON_TRACE" ]; then + echo "# . \"$1\"" + fi + . "$1" + else + echo "not found: \"$1\"" 1>&2 + fi +} + +# source chained prefixes +# setting COLCON_CURRENT_PREFIX avoids determining the prefix in the sourced script +COLCON_CURRENT_PREFIX="/opt/ros/humble" +_colcon_prefix_chain_zsh_source_script "$COLCON_CURRENT_PREFIX/local_setup.zsh" + +# source this prefix +# setting COLCON_CURRENT_PREFIX avoids determining the prefix in the sourced script +COLCON_CURRENT_PREFIX="$(builtin cd -q "`dirname "${(%):-%N}"`" > /dev/null && pwd)" +_colcon_prefix_chain_zsh_source_script "$COLCON_CURRENT_PREFIX/local_setup.zsh" + +unset COLCON_CURRENT_PREFIX +unset _colcon_prefix_chain_zsh_source_script diff --git a/log/COLCON_IGNORE b/log/COLCON_IGNORE new file mode 100644 index 00000000000..e69de29bb2d diff --git a/log/build_2025-01-30_16-20-54/events.log b/log/build_2025-01-30_16-20-54/events.log new file mode 100644 index 00000000000..517ad2f3ea6 --- /dev/null +++ b/log/build_2025-01-30_16-20-54/events.log @@ -0,0 +1,81 @@ +[0.000000] (-) TimerEvent: {} +[0.000226] (-) JobUnselected: {'identifier': 'external'} +[0.000336] (-) JobUnselected: {'identifier': 'geometry2d'} +[0.000351] (-) JobUnselected: {'identifier': 'rj_common'} +[0.000360] (-) JobUnselected: {'identifier': 'rj_config'} +[0.000367] (-) JobUnselected: {'identifier': 'rj_constants'} +[0.000375] (-) JobUnselected: {'identifier': 'rj_drawing_msgs'} +[0.000383] (-) JobUnselected: {'identifier': 'rj_geometry_msgs'} +[0.000391] (-) JobUnselected: {'identifier': 'rj_msgs'} +[0.000399] (-) JobUnselected: {'identifier': 'rj_param_utils'} +[0.000407] (-) JobUnselected: {'identifier': 'rj_protos'} +[0.000415] (-) JobUnselected: {'identifier': 'rj_robocup_docs'} +[0.000422] (-) JobUnselected: {'identifier': 'rj_topic_utils'} +[0.000430] (-) JobUnselected: {'identifier': 'rj_utils'} +[0.000438] (-) JobUnselected: {'identifier': 'rj_vision_receiver'} +[0.000445] (-) JobUnselected: {'identifier': 'soccer'} +[0.000455] (rj_convert) JobQueued: {'identifier': 'rj_convert', 'dependencies': OrderedDict()} +[0.000609] (rj_convert) JobStarted: {'identifier': 'rj_convert'} +[0.005484] (rj_convert) JobProgress: {'identifier': 'rj_convert', 'progress': 'cmake'} +[0.006217] (rj_convert) Command: {'cmd': ['/usr/bin/cmake', '/root/robocup-software/src/rj_convert', '-DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert'], 'cwd': '/root/robocup-software/build/rj_convert', 'env': OrderedDict([('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'root'), ('HOSTNAME', '883453f99e27'), ('GIT_ASKPASS', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/extensions/git/dist/askpass.sh'), ('SHLVL', '2'), ('LD_LIBRARY_PATH', '/opt/ros/humble/lib/aarch64-linux-gnu:/opt/ros/humble/lib'), ('BROWSER', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/bin/helpers/browser.sh'), ('HOME', '/root'), ('TERM_PROGRAM_VERSION', '1.96.4'), ('VSCODE_IPC_HOOK_CLI', '/tmp/vscode-ipc-0f19b725-94e1-4be6-974b-9e834c3e0ec8.sock'), ('ROS_PYTHON_VERSION', '3'), ('VSCODE_GIT_ASKPASS_MAIN', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/extensions/git/dist/askpass-main.js'), ('VSCODE_GIT_ASKPASS_NODE', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/node'), ('COLORTERM', 'truecolor'), ('REMOTE_CONTAINERS', 'true'), ('ROS_DISTRO', 'humble'), ('REMOTE_CONTAINERS_IPC', '/tmp/vscode-remote-containers-ipc-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('TERM', 'xterm-256color'), ('COLCON_MIXIN_PATH', '/root/robocup-software/mixin'), ('ROS_LOCALHOST_ONLY', '0'), ('PATH', '/opt/ros/humble/bin:/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/bin/remote-cli:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.vscode-server/data/User/globalStorage/github.copilot-chat/debugCommand'), ('REMOTE_CONTAINERS_SOCKETS', '["/tmp/vscode-ssh-auth-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock"]'), ('DISPLAY', ':1'), ('LANG', 'en_US.UTF-8'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/tmp/vscode-git-d1d340e128.sock'), ('TERM_PROGRAM', 'vscode'), ('SSH_AUTH_SOCK', '/tmp/vscode-ssh-auth-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock'), ('AMENT_PREFIX_PATH', '/opt/ros/humble'), ('DEBIAN_FRONTEND', 'noninteractive'), ('SHELL', '/bin/bash'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('PWD', '/root/robocup-software/build/rj_convert'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('TZ', 'America/New_York'), ('COLCON', '1'), ('CMAKE_PREFIX_PATH', '/opt/ros/humble')]), 'shell': False} +[0.101001] (-) TimerEvent: {} +[0.154362] (rj_convert) StdoutLine: {'line': b'-- The C compiler identification is GNU 11.4.0\n'} +[0.201315] (-) TimerEvent: {} +[0.249874] (rj_convert) StdoutLine: {'line': b'-- The CXX compiler identification is GNU 11.4.0\n'} +[0.256768] (rj_convert) StdoutLine: {'line': b'-- Detecting C compiler ABI info\n'} +[0.293800] (rj_convert) StdoutLine: {'line': b'-- Detecting C compiler ABI info - done\n'} +[0.298686] (rj_convert) StdoutLine: {'line': b'-- Check for working C compiler: /usr/bin/cc - skipped\n'} +[0.298884] (rj_convert) StdoutLine: {'line': b'-- Detecting C compile features\n'} +[0.299522] (rj_convert) StdoutLine: {'line': b'-- Detecting C compile features - done\n'} +[0.301611] (-) TimerEvent: {} +[0.301897] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compiler ABI info\n'} +[0.340106] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compiler ABI info - done\n'} +[0.345034] (rj_convert) StdoutLine: {'line': b'-- Check for working CXX compiler: /usr/bin/c++ - skipped\n'} +[0.345225] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compile features\n'} +[0.345552] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compile features - done\n'} +[0.349455] (rj_convert) StdoutLine: {'line': b'-- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake)\n'} +[0.401801] (-) TimerEvent: {} +[0.431458] (rj_convert) StdoutLine: {'line': b'-- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter \n'} +[0.484892] (rj_convert) StdoutLine: {'line': b'-- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake)\n'} +[0.505306] (-) TimerEvent: {} +[0.520142] (rj_convert) StdoutLine: {'line': b'-- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake)\n'} +[0.523729] (rj_convert) StdoutLine: {'line': b'-- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake)\n'} +[0.530375] (rj_convert) StdoutLine: {'line': b'-- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake)\n'} +[0.540705] (rj_convert) StdoutLine: {'line': b'-- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c\n'} +[0.550965] (rj_convert) StdoutLine: {'line': b'-- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp\n'} +[0.580884] (rj_convert) StdoutLine: {'line': b'-- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake)\n'} +[0.582345] (rj_convert) StdoutLine: {'line': b'-- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake)\n'} +[0.606871] (-) TimerEvent: {} +[0.628768] (rj_convert) StdoutLine: {'line': b'-- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") \n'} +[0.643594] (rj_convert) StdoutLine: {'line': b'-- Found FastRTPS: /opt/ros/humble/include \n'} +[0.665364] (rj_convert) StdoutLine: {'line': b"-- Using RMW implementation 'rmw_fastrtps_cpp' as default\n"} +[0.671931] (rj_convert) StdoutLine: {'line': b'-- Looking for pthread.h\n'} +[0.707345] (-) TimerEvent: {} +[0.717615] (rj_convert) StdoutLine: {'line': b'-- Looking for pthread.h - found\n'} +[0.717711] (rj_convert) StdoutLine: {'line': b'-- Performing Test CMAKE_HAVE_LIBC_PTHREAD\n'} +[0.753631] (rj_convert) StdoutLine: {'line': b'-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success\n'} +[0.754387] (rj_convert) StdoutLine: {'line': b'-- Found Threads: TRUE \n'} +[0.794856] (rj_convert) StdoutLine: {'line': b'-- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake)\n'} +[0.807668] (-) TimerEvent: {} +[0.843918] (rj_convert) StderrLine: {'line': b'\x1b[31mCMake Error at test/CMakeLists.txt:3 (find_package):\n'} +[0.844062] (rj_convert) StderrLine: {'line': b' By not providing "Findrj_convert.cmake" in CMAKE_MODULE_PATH this project\n'} +[0.844106] (rj_convert) StderrLine: {'line': b' has asked CMake to find a package configuration file provided by\n'} +[0.844136] (rj_convert) StderrLine: {'line': b' "rj_convert", but CMake did not find one.\n'} +[0.844167] (rj_convert) StderrLine: {'line': b'\n'} +[0.844204] (rj_convert) StderrLine: {'line': b' Could not find a package configuration file provided by "rj_convert" with\n'} +[0.844242] (rj_convert) StderrLine: {'line': b' any of the following names:\n'} +[0.844279] (rj_convert) StderrLine: {'line': b'\n'} +[0.844307] (rj_convert) StderrLine: {'line': b' rj_convertConfig.cmake\n'} +[0.844334] (rj_convert) StderrLine: {'line': b' rj_convert-config.cmake\n'} +[0.844363] (rj_convert) StderrLine: {'line': b'\n'} +[0.844391] (rj_convert) StderrLine: {'line': b' Add the installation prefix of "rj_convert" to CMAKE_PREFIX_PATH or set\n'} +[0.844417] (rj_convert) StderrLine: {'line': b' "rj_convert_DIR" to a directory containing one of the above files. If\n'} +[0.844444] (rj_convert) StderrLine: {'line': b' "rj_convert" provides a separate development package or SDK, be sure it has\n'} +[0.844471] (rj_convert) StderrLine: {'line': b' been installed.\n'} +[0.844498] (rj_convert) StderrLine: {'line': b'\n'} +[0.844524] (rj_convert) StderrLine: {'line': b'\x1b[0m\n'} +[0.844587] (rj_convert) StdoutLine: {'line': b'-- Configuring incomplete, errors occurred!\n'} +[0.844624] (rj_convert) StdoutLine: {'line': b'See also "/root/robocup-software/build/rj_convert/CMakeFiles/CMakeOutput.log".\n'} +[0.849277] (rj_convert) CommandEnded: {'returncode': 1} +[0.859423] (rj_convert) JobEnded: {'identifier': 'rj_convert', 'rc': 1} +[0.871407] (-) EventReactorShutdown: {} diff --git a/log/build_2025-01-30_16-20-54/logger_all.log b/log/build_2025-01-30_16-20-54/logger_all.log new file mode 100644 index 00000000000..2c9c4659119 --- /dev/null +++ b/log/build_2025-01-30_16-20-54/logger_all.log @@ -0,0 +1,471 @@ +[0.067s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build', '--packages-select', 'rj_convert'] +[0.067s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=10, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=['rj_convert'], packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) +[0.207s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters +[0.207s] INFO:colcon.colcon_metadata.package_discovery.colcon_meta:Using configuration from '/root/robocup-software/colcon.meta' +[0.207s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters +[0.207s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters +[0.207s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters +[0.207s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover +[0.207s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover +[0.207s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/root/robocup-software' +[0.208s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] +[0.208s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' +[0.208s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' +[0.208s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] +[0.208s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' +[0.208s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] +[0.208s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' +[0.208s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] +[0.208s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' +[0.216s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] +[0.216s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' +[0.216s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' +[0.216s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] +[0.216s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' +[0.216s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] +[0.216s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' +[0.216s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored +[0.216s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['ignore', 'ignore_ament_install'] +[0.216s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'ignore' +[0.216s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'ignore_ament_install' +[0.216s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['colcon_pkg'] +[0.216s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'colcon_pkg' +[0.216s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['colcon_meta'] +[0.216s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'colcon_meta' +[0.216s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['ros'] +[0.216s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'ros' +[0.216s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['cmake', 'python'] +[0.216s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'cmake' +[0.216s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'python' +[0.216s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['python_setup_py'] +[0.216s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'python_setup_py' +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['ignore', 'ignore_ament_install'] +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'ignore' +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'ignore_ament_install' +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['colcon_pkg'] +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'colcon_pkg' +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['colcon_meta'] +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'colcon_meta' +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['ros'] +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'ros' +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['cmake', 'python'] +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'cmake' +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'python' +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['python_setup_py'] +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'python_setup_py' +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['ignore', 'ignore_ament_install'] +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'ignore' +[0.217s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'ignore_ament_install' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['colcon_pkg'] +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'colcon_pkg' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['colcon_meta'] +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'colcon_meta' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['ros'] +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'ros' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['cmake', 'python'] +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'cmake' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'python' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['python_setup_py'] +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'python_setup_py' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['ignore', 'ignore_ament_install'] +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'ignore' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'ignore_ament_install' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['colcon_pkg'] +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'colcon_pkg' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['colcon_meta'] +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'colcon_meta' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['ros'] +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'ros' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['cmake', 'python'] +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'cmake' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'python' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['python_setup_py'] +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'python_setup_py' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['ignore', 'ignore_ament_install'] +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'ignore' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'ignore_ament_install' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['colcon_pkg'] +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'colcon_pkg' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['colcon_meta'] +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'colcon_meta' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['ros'] +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'ros' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['cmake', 'python'] +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'cmake' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'python' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['python_setup_py'] +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'python_setup_py' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['ignore', 'ignore_ament_install'] +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'ignore' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'ignore_ament_install' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['colcon_pkg'] +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'colcon_pkg' +[0.218s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['colcon_meta'] +[0.219s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'colcon_meta' +[0.219s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['ros'] +[0.219s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'ros' +[0.219s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['cmake', 'python'] +[0.219s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'cmake' +[0.219s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'python' +[0.219s] DEBUG:colcon.colcon_core.package_identification:Package 'src/docs' with type 'cmake' and name 'rj_robocup_docs' +[0.219s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['ignore', 'ignore_ament_install'] +[0.219s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'ignore' +[0.220s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'ignore_ament_install' +[0.220s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['colcon_pkg'] +[0.220s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'colcon_pkg' +[0.220s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['colcon_meta'] +[0.220s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'colcon_meta' +[0.220s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['ros'] +[0.220s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'ros' +[0.220s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['cmake', 'python'] +[0.220s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'cmake' +[0.225s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'python' +[0.225s] DEBUG:colcon.colcon_core.package_identification:Package 'src/external' with type 'cmake' and name 'external' +[0.225s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['ignore', 'ignore_ament_install'] +[0.225s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'ignore' +[0.225s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'ignore_ament_install' +[0.225s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['colcon_pkg'] +[0.225s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'colcon_pkg' +[0.225s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['colcon_meta'] +[0.225s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'colcon_meta' +[0.225s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['ros'] +[0.225s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'ros' +[0.225s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['cmake', 'python'] +[0.225s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'cmake' +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'python' +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['python_setup_py'] +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'python_setup_py' +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['ignore', 'ignore_ament_install'] +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'ignore' +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'ignore_ament_install' +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['colcon_pkg'] +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'colcon_pkg' +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['colcon_meta'] +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'colcon_meta' +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['ros'] +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'ros' +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['cmake', 'python'] +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'cmake' +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'python' +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['python_setup_py'] +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'python_setup_py' +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['ignore', 'ignore_ament_install'] +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'ignore' +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'ignore_ament_install' +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['colcon_pkg'] +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'colcon_pkg' +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['colcon_meta'] +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'colcon_meta' +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['ros'] +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'ros' +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['cmake', 'python'] +[0.226s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'cmake' +[0.227s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'python' +[0.227s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_common' with type 'cmake' and name 'rj_common' +[0.227s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['ignore', 'ignore_ament_install'] +[0.227s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'ignore' +[0.227s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'ignore_ament_install' +[0.227s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['colcon_pkg'] +[0.227s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'colcon_pkg' +[0.227s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['colcon_meta'] +[0.227s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'colcon_meta' +[0.227s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['ros'] +[0.227s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'ros' +[0.227s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['cmake', 'python'] +[0.227s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'cmake' +[0.228s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'python' +[0.228s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_config' with type 'cmake' and name 'rj_config' +[0.228s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['ignore', 'ignore_ament_install'] +[0.228s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'ignore' +[0.228s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'ignore_ament_install' +[0.228s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['colcon_pkg'] +[0.228s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'colcon_pkg' +[0.228s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['colcon_meta'] +[0.228s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'colcon_meta' +[0.228s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['ros'] +[0.228s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'ros' +[0.228s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['cmake', 'python'] +[0.228s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'cmake' +[0.228s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'python' +[0.228s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_constants' with type 'cmake' and name 'rj_constants' +[0.228s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['ignore', 'ignore_ament_install'] +[0.228s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'ignore' +[0.228s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'ignore_ament_install' +[0.228s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['colcon_pkg'] +[0.228s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'colcon_pkg' +[0.228s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['colcon_meta'] +[0.228s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'colcon_meta' +[0.228s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['ros'] +[0.228s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'ros' +[0.230s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_convert' with type 'ros.ament_cmake' and name 'rj_convert' +[0.230s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['ignore', 'ignore_ament_install'] +[0.230s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'ignore' +[0.230s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'ignore_ament_install' +[0.230s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['colcon_pkg'] +[0.230s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'colcon_pkg' +[0.230s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['colcon_meta'] +[0.230s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'colcon_meta' +[0.230s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['ros'] +[0.230s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'ros' +[0.230s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_drawing_msgs' with type 'ros.ament_cmake' and name 'rj_drawing_msgs' +[0.230s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['ignore', 'ignore_ament_install'] +[0.231s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'ignore' +[0.231s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'ignore_ament_install' +[0.231s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['colcon_pkg'] +[0.231s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'colcon_pkg' +[0.231s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['colcon_meta'] +[0.231s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'colcon_meta' +[0.231s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['ros'] +[0.231s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'ros' +[0.231s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['cmake', 'python'] +[0.231s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'cmake' +[0.231s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'python' +[0.231s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_geometry' with type 'cmake' and name 'geometry2d' +[0.231s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['ignore', 'ignore_ament_install'] +[0.231s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'ignore' +[0.231s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'ignore_ament_install' +[0.231s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['colcon_pkg'] +[0.232s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'colcon_pkg' +[0.232s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['colcon_meta'] +[0.232s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'colcon_meta' +[0.232s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['ros'] +[0.232s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'ros' +[0.232s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_geometry_msgs' with type 'ros.ament_cmake' and name 'rj_geometry_msgs' +[0.232s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['ignore', 'ignore_ament_install'] +[0.232s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'ignore' +[0.232s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'ignore_ament_install' +[0.232s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['colcon_pkg'] +[0.232s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'colcon_pkg' +[0.232s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['colcon_meta'] +[0.232s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'colcon_meta' +[0.232s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['ros'] +[0.232s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'ros' +[0.233s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_msgs' with type 'ros.ament_cmake' and name 'rj_msgs' +[0.233s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['ignore', 'ignore_ament_install'] +[0.233s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'ignore' +[0.233s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'ignore_ament_install' +[0.233s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['colcon_pkg'] +[0.233s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'colcon_pkg' +[0.233s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['colcon_meta'] +[0.233s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'colcon_meta' +[0.233s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['ros'] +[0.233s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'ros' +[0.233s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['cmake', 'python'] +[0.233s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'cmake' +[0.234s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'python' +[0.234s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_param_utils' with type 'cmake' and name 'rj_param_utils' +[0.234s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['ignore', 'ignore_ament_install'] +[0.234s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'ignore' +[0.234s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'ignore_ament_install' +[0.234s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['colcon_pkg'] +[0.234s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'colcon_pkg' +[0.234s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['colcon_meta'] +[0.234s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'colcon_meta' +[0.234s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['ros'] +[0.234s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'ros' +[0.234s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['cmake', 'python'] +[0.234s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'cmake' +[0.234s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'python' +[0.234s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_protos' with type 'cmake' and name 'rj_protos' +[0.234s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['ignore', 'ignore_ament_install'] +[0.234s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'ignore' +[0.234s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'ignore_ament_install' +[0.234s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['colcon_pkg'] +[0.234s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'colcon_pkg' +[0.234s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['colcon_meta'] +[0.234s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'colcon_meta' +[0.234s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['ros'] +[0.235s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'ros' +[0.235s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['cmake', 'python'] +[0.235s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'cmake' +[0.235s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'python' +[0.235s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_topic_utils' with type 'cmake' and name 'rj_topic_utils' +[0.235s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['ignore', 'ignore_ament_install'] +[0.235s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'ignore' +[0.235s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'ignore_ament_install' +[0.235s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['colcon_pkg'] +[0.235s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'colcon_pkg' +[0.235s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['colcon_meta'] +[0.235s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'colcon_meta' +[0.235s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['ros'] +[0.235s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'ros' +[0.235s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['cmake', 'python'] +[0.235s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'cmake' +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'python' +[0.236s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_utils' with type 'cmake' and name 'rj_utils' +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['ignore', 'ignore_ament_install'] +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'ignore' +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'ignore_ament_install' +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['colcon_pkg'] +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'colcon_pkg' +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['colcon_meta'] +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'colcon_meta' +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['ros'] +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'ros' +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['cmake', 'python'] +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'cmake' +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'python' +[0.236s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_vision_receiver' with type 'cmake' and name 'rj_vision_receiver' +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['ignore', 'ignore_ament_install'] +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'ignore' +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'ignore_ament_install' +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['colcon_pkg'] +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'colcon_pkg' +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['colcon_meta'] +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'colcon_meta' +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['ros'] +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'ros' +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['cmake', 'python'] +[0.236s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'cmake' +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'python' +[0.239s] DEBUG:colcon.colcon_core.package_identification:Package 'src/soccer' with type 'cmake' and name 'soccer' +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['ignore', 'ignore_ament_install'] +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'ignore' +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'ignore_ament_install' +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['colcon_pkg'] +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'colcon_pkg' +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['colcon_meta'] +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'colcon_meta' +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['ros'] +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'ros' +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['cmake', 'python'] +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'cmake' +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'python' +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['python_setup_py'] +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'python_setup_py' +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['ignore', 'ignore_ament_install'] +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'ignore' +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'ignore_ament_install' +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['colcon_pkg'] +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'colcon_pkg' +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['colcon_meta'] +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'colcon_meta' +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['ros'] +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'ros' +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['cmake', 'python'] +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'cmake' +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'python' +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['python_setup_py'] +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'python_setup_py' +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['ignore', 'ignore_ament_install'] +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'ignore' +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'ignore_ament_install' +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['colcon_pkg'] +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'colcon_pkg' +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['colcon_meta'] +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'colcon_meta' +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['ros'] +[0.239s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'ros' +[0.240s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['cmake', 'python'] +[0.240s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'cmake' +[0.240s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'python' +[0.240s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['python_setup_py'] +[0.240s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'python_setup_py' +[0.240s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['ignore', 'ignore_ament_install'] +[0.240s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'ignore' +[0.240s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'ignore_ament_install' +[0.240s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['colcon_pkg'] +[0.240s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'colcon_pkg' +[0.240s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['colcon_meta'] +[0.240s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'colcon_meta' +[0.240s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['ros'] +[0.240s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'ros' +[0.240s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['cmake', 'python'] +[0.240s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'cmake' +[0.240s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'python' +[0.240s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['python_setup_py'] +[0.240s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'python_setup_py' +[0.240s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults +[0.240s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover +[0.240s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults +[0.240s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover +[0.240s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults +[0.262s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'external' in 'src/external' +[0.262s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_constants' in 'src/rj_constants' +[0.262s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_geometry_msgs' in 'src/rj_geometry_msgs' +[0.262s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_param_utils' in 'src/rj_param_utils' +[0.262s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_protos' in 'src/rj_protos' +[0.262s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_robocup_docs' in 'src/docs' +[0.262s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_topic_utils' in 'src/rj_topic_utils' +[0.262s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'geometry2d' in 'src/rj_geometry' +[0.262s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_drawing_msgs' in 'src/rj_drawing_msgs' +[0.262s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_msgs' in 'src/rj_msgs' +[0.262s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_common' in 'src/rj_common' +[0.262s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_config' in 'src/rj_config' +[0.262s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_utils' in 'src/rj_utils' +[0.262s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_vision_receiver' in 'src/rj_vision_receiver' +[0.262s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'soccer' in 'src/soccer' +[0.262s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters +[0.262s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover +[0.264s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 232 installed packages in /opt/ros/humble +[0.265s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults +[0.287s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_args' from command line to 'None' +[0.287s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_target' from command line to 'None' +[0.287s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_target_skip_unavailable' from command line to 'False' +[0.287s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_clean_cache' from command line to 'False' +[0.287s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_clean_first' from command line to 'False' +[0.287s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_force_configure' from command line to 'False' +[0.287s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'ament_cmake_args' from command line to 'None' +[0.287s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'catkin_cmake_args' from command line to 'None' +[0.287s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'catkin_skip_building_tests' from command line to 'False' +[0.287s] DEBUG:colcon.colcon_core.verb:Building package 'rj_convert' with the following arguments: {'ament_cmake_args': None, 'build_base': '/root/robocup-software/build/rj_convert', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/root/robocup-software/install/rj_convert', 'merge_install': False, 'path': '/root/robocup-software/src/rj_convert', 'symlink_install': False, 'test_result_base': None} +[0.288s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor +[0.288s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete +[0.289s] INFO:colcon.colcon_ros.task.ament_cmake.build:Building ROS package in '/root/robocup-software/src/rj_convert' with build type 'ament_cmake' +[0.289s] INFO:colcon.colcon_cmake.task.cmake.build:Building CMake package in '/root/robocup-software/src/rj_convert' +[0.290s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems +[0.290s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell +[0.290s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment +[0.295s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +[1.137s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/root/robocup-software/build/rj_convert' returned '1': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +[1.143s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(rj_convert) +[1.144s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert' for CMake module files +[1.144s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert' for CMake config files +[1.145s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/bin' +[1.145s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/lib/pkgconfig/rj_convert.pc' +[1.145s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/lib/python3.10/site-packages' +[1.145s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/bin' +[1.145s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.ps1' +[1.146s] INFO:colcon.colcon_core.shell:Creating package descriptor '/root/robocup-software/install/rj_convert/share/rj_convert/package.dsv' +[1.146s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.sh' +[1.146s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.bash' +[1.147s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.zsh' +[1.147s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/root/robocup-software/install/rj_convert/share/colcon-core/packages/rj_convert) +[1.159s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop +[1.159s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed +[1.159s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '1' +[1.159s] DEBUG:colcon.colcon_core.event_reactor:joining thread +[1.165s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems +[1.165s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems +[1.165s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' +[1.278s] DEBUG:colcon.colcon_core.event_reactor:joined thread +[1.279s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.ps1' +[1.280s] INFO:colcon.colcon_core.shell:Creating prefix util module '/root/robocup-software/install/_local_setup_util_ps1.py' +[1.281s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.ps1' +[1.282s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.sh' +[1.282s] INFO:colcon.colcon_core.shell:Creating prefix util module '/root/robocup-software/install/_local_setup_util_sh.py' +[1.283s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.sh' +[1.283s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.bash' +[1.284s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.bash' +[1.284s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.zsh' +[1.284s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.zsh' diff --git a/log/build_2025-01-30_16-20-54/rj_convert/command.log b/log/build_2025-01-30_16-20-54/rj_convert/command.log new file mode 100644 index 00000000000..f2dc63e0b95 --- /dev/null +++ b/log/build_2025-01-30_16-20-54/rj_convert/command.log @@ -0,0 +1,2 @@ +Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +Invoked command in '/root/robocup-software/build/rj_convert' returned '1': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert diff --git a/log/build_2025-01-30_16-20-54/rj_convert/stderr.log b/log/build_2025-01-30_16-20-54/rj_convert/stderr.log new file mode 100644 index 00000000000..11437a11e6a --- /dev/null +++ b/log/build_2025-01-30_16-20-54/rj_convert/stderr.log @@ -0,0 +1,17 @@ +CMake Error at test/CMakeLists.txt:3 (find_package): + By not providing "Findrj_convert.cmake" in CMAKE_MODULE_PATH this project + has asked CMake to find a package configuration file provided by + "rj_convert", but CMake did not find one. + + Could not find a package configuration file provided by "rj_convert" with + any of the following names: + + rj_convertConfig.cmake + rj_convert-config.cmake + + Add the installation prefix of "rj_convert" to CMAKE_PREFIX_PATH or set + "rj_convert_DIR" to a directory containing one of the above files. If + "rj_convert" provides a separate development package or SDK, be sure it has + been installed. + + diff --git a/log/build_2025-01-30_16-20-54/rj_convert/stdout.log b/log/build_2025-01-30_16-20-54/rj_convert/stdout.log new file mode 100644 index 00000000000..c347ca34539 --- /dev/null +++ b/log/build_2025-01-30_16-20-54/rj_convert/stdout.log @@ -0,0 +1,33 @@ +-- The C compiler identification is GNU 11.4.0 +-- The CXX compiler identification is GNU 11.4.0 +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Check for working C compiler: /usr/bin/cc - skipped +-- Detecting C compile features +-- Detecting C compile features - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Check for working CXX compiler: /usr/bin/c++ - skipped +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake) +-- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter +-- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake) +-- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake) +-- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake) +-- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake) +-- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c +-- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp +-- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake) +-- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake) +-- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") +-- Found FastRTPS: /opt/ros/humble/include +-- Using RMW implementation 'rmw_fastrtps_cpp' as default +-- Looking for pthread.h +-- Looking for pthread.h - found +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +-- Found Threads: TRUE +-- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake) +-- Configuring incomplete, errors occurred! +See also "/root/robocup-software/build/rj_convert/CMakeFiles/CMakeOutput.log". diff --git a/log/build_2025-01-30_16-20-54/rj_convert/stdout_stderr.log b/log/build_2025-01-30_16-20-54/rj_convert/stdout_stderr.log new file mode 100644 index 00000000000..8090e07389b --- /dev/null +++ b/log/build_2025-01-30_16-20-54/rj_convert/stdout_stderr.log @@ -0,0 +1,50 @@ +-- The C compiler identification is GNU 11.4.0 +-- The CXX compiler identification is GNU 11.4.0 +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Check for working C compiler: /usr/bin/cc - skipped +-- Detecting C compile features +-- Detecting C compile features - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Check for working CXX compiler: /usr/bin/c++ - skipped +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake) +-- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter +-- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake) +-- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake) +-- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake) +-- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake) +-- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c +-- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp +-- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake) +-- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake) +-- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") +-- Found FastRTPS: /opt/ros/humble/include +-- Using RMW implementation 'rmw_fastrtps_cpp' as default +-- Looking for pthread.h +-- Looking for pthread.h - found +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +-- Found Threads: TRUE +-- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake) +CMake Error at test/CMakeLists.txt:3 (find_package): + By not providing "Findrj_convert.cmake" in CMAKE_MODULE_PATH this project + has asked CMake to find a package configuration file provided by + "rj_convert", but CMake did not find one. + + Could not find a package configuration file provided by "rj_convert" with + any of the following names: + + rj_convertConfig.cmake + rj_convert-config.cmake + + Add the installation prefix of "rj_convert" to CMAKE_PREFIX_PATH or set + "rj_convert_DIR" to a directory containing one of the above files. If + "rj_convert" provides a separate development package or SDK, be sure it has + been installed. + + +-- Configuring incomplete, errors occurred! +See also "/root/robocup-software/build/rj_convert/CMakeFiles/CMakeOutput.log". diff --git a/log/build_2025-01-30_16-20-54/rj_convert/streams.log b/log/build_2025-01-30_16-20-54/rj_convert/streams.log new file mode 100644 index 00000000000..99440aa3dae --- /dev/null +++ b/log/build_2025-01-30_16-20-54/rj_convert/streams.log @@ -0,0 +1,52 @@ +[0.006s] Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +[0.154s] -- The C compiler identification is GNU 11.4.0 +[0.249s] -- The CXX compiler identification is GNU 11.4.0 +[0.256s] -- Detecting C compiler ABI info +[0.293s] -- Detecting C compiler ABI info - done +[0.298s] -- Check for working C compiler: /usr/bin/cc - skipped +[0.298s] -- Detecting C compile features +[0.299s] -- Detecting C compile features - done +[0.301s] -- Detecting CXX compiler ABI info +[0.340s] -- Detecting CXX compiler ABI info - done +[0.344s] -- Check for working CXX compiler: /usr/bin/c++ - skipped +[0.345s] -- Detecting CXX compile features +[0.345s] -- Detecting CXX compile features - done +[0.349s] -- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake) +[0.431s] -- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter +[0.484s] -- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake) +[0.520s] -- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake) +[0.523s] -- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake) +[0.530s] -- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake) +[0.540s] -- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c +[0.550s] -- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp +[0.580s] -- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake) +[0.582s] -- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake) +[0.628s] -- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") +[0.643s] -- Found FastRTPS: /opt/ros/humble/include +[0.665s] -- Using RMW implementation 'rmw_fastrtps_cpp' as default +[0.671s] -- Looking for pthread.h +[0.717s] -- Looking for pthread.h - found +[0.717s] -- Performing Test CMAKE_HAVE_LIBC_PTHREAD +[0.753s] -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +[0.754s] -- Found Threads: TRUE +[0.794s] -- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake) +[0.843s] CMake Error at test/CMakeLists.txt:3 (find_package): +[0.843s] By not providing "Findrj_convert.cmake" in CMAKE_MODULE_PATH this project +[0.844s] has asked CMake to find a package configuration file provided by +[0.844s] "rj_convert", but CMake did not find one. +[0.844s] +[0.844s] Could not find a package configuration file provided by "rj_convert" with +[0.844s] any of the following names: +[0.844s] +[0.844s] rj_convertConfig.cmake +[0.844s] rj_convert-config.cmake +[0.844s] +[0.844s] Add the installation prefix of "rj_convert" to CMAKE_PREFIX_PATH or set +[0.844s] "rj_convert_DIR" to a directory containing one of the above files. If +[0.844s] "rj_convert" provides a separate development package or SDK, be sure it has +[0.844s] been installed. +[0.844s] +[0.844s]  +[0.844s] -- Configuring incomplete, errors occurred! +[0.844s] See also "/root/robocup-software/build/rj_convert/CMakeFiles/CMakeOutput.log". +[0.849s] Invoked command in '/root/robocup-software/build/rj_convert' returned '1': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert diff --git a/log/build_2025-01-30_16-22-14/events.log b/log/build_2025-01-30_16-22-14/events.log new file mode 100644 index 00000000000..c5fc9c31d78 --- /dev/null +++ b/log/build_2025-01-30_16-22-14/events.log @@ -0,0 +1,78 @@ +[0.000000] (-) TimerEvent: {} +[0.001396] (-) JobUnselected: {'identifier': 'external'} +[0.001425] (-) JobUnselected: {'identifier': 'geometry2d'} +[0.001440] (-) JobUnselected: {'identifier': 'rj_common'} +[0.001448] (-) JobUnselected: {'identifier': 'rj_config'} +[0.001456] (-) JobUnselected: {'identifier': 'rj_constants'} +[0.001464] (-) JobUnselected: {'identifier': 'rj_drawing_msgs'} +[0.001473] (-) JobUnselected: {'identifier': 'rj_geometry_msgs'} +[0.001484] (-) JobUnselected: {'identifier': 'rj_msgs'} +[0.001492] (-) JobUnselected: {'identifier': 'rj_param_utils'} +[0.001500] (-) JobUnselected: {'identifier': 'rj_protos'} +[0.001507] (-) JobUnselected: {'identifier': 'rj_robocup_docs'} +[0.001515] (-) JobUnselected: {'identifier': 'rj_topic_utils'} +[0.001522] (-) JobUnselected: {'identifier': 'rj_utils'} +[0.001532] (-) JobUnselected: {'identifier': 'rj_vision_receiver'} +[0.001543] (-) JobUnselected: {'identifier': 'soccer'} +[0.001552] (rj_convert) JobQueued: {'identifier': 'rj_convert', 'dependencies': OrderedDict()} +[0.001563] (rj_convert) JobStarted: {'identifier': 'rj_convert'} +[0.003974] (rj_convert) JobProgress: {'identifier': 'rj_convert', 'progress': 'cmake'} +[0.004259] (rj_convert) Command: {'cmd': ['/usr/bin/cmake', '/root/robocup-software/src/rj_convert', '-DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert'], 'cwd': '/root/robocup-software/build/rj_convert', 'env': OrderedDict([('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'root'), ('HOSTNAME', '883453f99e27'), ('GIT_ASKPASS', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/extensions/git/dist/askpass.sh'), ('SHLVL', '2'), ('LD_LIBRARY_PATH', '/opt/ros/humble/lib/aarch64-linux-gnu:/opt/ros/humble/lib'), ('BROWSER', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/bin/helpers/browser.sh'), ('HOME', '/root'), ('TERM_PROGRAM_VERSION', '1.96.4'), ('VSCODE_IPC_HOOK_CLI', '/tmp/vscode-ipc-0f19b725-94e1-4be6-974b-9e834c3e0ec8.sock'), ('ROS_PYTHON_VERSION', '3'), ('VSCODE_GIT_ASKPASS_MAIN', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/extensions/git/dist/askpass-main.js'), ('VSCODE_GIT_ASKPASS_NODE', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/node'), ('COLORTERM', 'truecolor'), ('REMOTE_CONTAINERS', 'true'), ('ROS_DISTRO', 'humble'), ('REMOTE_CONTAINERS_IPC', '/tmp/vscode-remote-containers-ipc-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('TERM', 'xterm-256color'), ('COLCON_MIXIN_PATH', '/root/robocup-software/mixin'), ('ROS_LOCALHOST_ONLY', '0'), ('PATH', '/opt/ros/humble/bin:/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/bin/remote-cli:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.vscode-server/data/User/globalStorage/github.copilot-chat/debugCommand'), ('REMOTE_CONTAINERS_SOCKETS', '["/tmp/vscode-ssh-auth-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock"]'), ('DISPLAY', ':1'), ('LANG', 'en_US.UTF-8'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/tmp/vscode-git-d1d340e128.sock'), ('TERM_PROGRAM', 'vscode'), ('SSH_AUTH_SOCK', '/tmp/vscode-ssh-auth-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock'), ('AMENT_PREFIX_PATH', '/opt/ros/humble'), ('DEBIAN_FRONTEND', 'noninteractive'), ('SHELL', '/bin/bash'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('PWD', '/root/robocup-software/build/rj_convert'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('TZ', 'America/New_York'), ('COLCON', '1'), ('CMAKE_PREFIX_PATH', '/opt/ros/humble')]), 'shell': False} +[0.035497] (rj_convert) StdoutLine: {'line': b'-- The C compiler identification is GNU 11.4.0\n'} +[0.063834] (rj_convert) StdoutLine: {'line': b'-- The CXX compiler identification is GNU 11.4.0\n'} +[0.067976] (rj_convert) StdoutLine: {'line': b'-- Detecting C compiler ABI info\n'} +[0.099047] (rj_convert) StdoutLine: {'line': b'-- Detecting C compiler ABI info - done\n'} +[0.100218] (-) TimerEvent: {} +[0.103912] (rj_convert) StdoutLine: {'line': b'-- Check for working C compiler: /usr/bin/cc - skipped\n'} +[0.104090] (rj_convert) StdoutLine: {'line': b'-- Detecting C compile features\n'} +[0.105450] (rj_convert) StdoutLine: {'line': b'-- Detecting C compile features - done\n'} +[0.107460] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compiler ABI info\n'} +[0.145210] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compiler ABI info - done\n'} +[0.150211] (rj_convert) StdoutLine: {'line': b'-- Check for working CXX compiler: /usr/bin/c++ - skipped\n'} +[0.150395] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compile features\n'} +[0.150717] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compile features - done\n'} +[0.151963] (rj_convert) StdoutLine: {'line': b'-- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake)\n'} +[0.201282] (-) TimerEvent: {} +[0.225571] (rj_convert) StdoutLine: {'line': b'-- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter \n'} +[0.264347] (rj_convert) StdoutLine: {'line': b'-- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake)\n'} +[0.286913] (rj_convert) StdoutLine: {'line': b'-- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake)\n'} +[0.289144] (rj_convert) StdoutLine: {'line': b'-- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake)\n'} +[0.293328] (rj_convert) StdoutLine: {'line': b'-- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake)\n'} +[0.299814] (rj_convert) StdoutLine: {'line': b'-- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c\n'} +[0.301710] (-) TimerEvent: {} +[0.308363] (rj_convert) StdoutLine: {'line': b'-- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp\n'} +[0.332503] (rj_convert) StdoutLine: {'line': b'-- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake)\n'} +[0.333602] (rj_convert) StdoutLine: {'line': b'-- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake)\n'} +[0.371561] (rj_convert) StdoutLine: {'line': b'-- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") \n'} +[0.384435] (rj_convert) StdoutLine: {'line': b'-- Found FastRTPS: /opt/ros/humble/include \n'} +[0.402496] (-) TimerEvent: {} +[0.403464] (rj_convert) StdoutLine: {'line': b"-- Using RMW implementation 'rmw_fastrtps_cpp' as default\n"} +[0.408020] (rj_convert) StdoutLine: {'line': b'-- Looking for pthread.h\n'} +[0.445389] (rj_convert) StdoutLine: {'line': b'-- Looking for pthread.h - found\n'} +[0.445564] (rj_convert) StdoutLine: {'line': b'-- Performing Test CMAKE_HAVE_LIBC_PTHREAD\n'} +[0.479395] (rj_convert) StdoutLine: {'line': b'-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success\n'} +[0.480039] (rj_convert) StdoutLine: {'line': b'-- Found Threads: TRUE \n'} +[0.503002] (-) TimerEvent: {} +[0.519331] (rj_convert) StdoutLine: {'line': b'-- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake)\n'} +[0.565250] (rj_convert) StderrLine: {'line': b'\x1b[31mCMake Error at test/CMakeLists.txt:3 (find_package):\n'} +[0.565381] (rj_convert) StderrLine: {'line': b' By not providing "Findrj_convert.cmake" in CMAKE_MODULE_PATH this project\n'} +[0.565419] (rj_convert) StderrLine: {'line': b' has asked CMake to find a package configuration file provided by\n'} +[0.565448] (rj_convert) StderrLine: {'line': b' "rj_convert", but CMake did not find one.\n'} +[0.565476] (rj_convert) StderrLine: {'line': b'\n'} +[0.565503] (rj_convert) StderrLine: {'line': b' Could not find a package configuration file provided by "rj_convert" with\n'} +[0.565529] (rj_convert) StderrLine: {'line': b' any of the following names:\n'} +[0.565556] (rj_convert) StderrLine: {'line': b'\n'} +[0.565581] (rj_convert) StderrLine: {'line': b' rj_convertConfig.cmake\n'} +[0.565607] (rj_convert) StderrLine: {'line': b' rj_convert-config.cmake\n'} +[0.565634] (rj_convert) StderrLine: {'line': b'\n'} +[0.565666] (rj_convert) StderrLine: {'line': b' Add the installation prefix of "rj_convert" to CMAKE_PREFIX_PATH or set\n'} +[0.565693] (rj_convert) StderrLine: {'line': b' "rj_convert_DIR" to a directory containing one of the above files. If\n'} +[0.565720] (rj_convert) StderrLine: {'line': b' "rj_convert" provides a separate development package or SDK, be sure it has\n'} +[0.565748] (rj_convert) StderrLine: {'line': b' been installed.\n'} +[0.565775] (rj_convert) StderrLine: {'line': b'\n'} +[0.565803] (rj_convert) StderrLine: {'line': b'\x1b[0m\n'} +[0.566415] (rj_convert) StdoutLine: {'line': b'-- Configuring incomplete, errors occurred!\n'} +[0.566472] (rj_convert) StdoutLine: {'line': b'See also "/root/robocup-software/build/rj_convert/CMakeFiles/CMakeOutput.log".\n'} +[0.570965] (rj_convert) CommandEnded: {'returncode': 1} +[0.580050] (rj_convert) JobEnded: {'identifier': 'rj_convert', 'rc': 1} +[0.580667] (-) EventReactorShutdown: {} diff --git a/log/build_2025-01-30_16-22-14/logger_all.log b/log/build_2025-01-30_16-22-14/logger_all.log new file mode 100644 index 00000000000..956ef6be582 --- /dev/null +++ b/log/build_2025-01-30_16-22-14/logger_all.log @@ -0,0 +1,471 @@ +[0.063s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build', '--packages-select', 'rj_convert', '--cmake-clean-cache'] +[0.063s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=10, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=['rj_convert'], packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=True, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) +[0.144s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters +[0.144s] INFO:colcon.colcon_metadata.package_discovery.colcon_meta:Using configuration from '/root/robocup-software/colcon.meta' +[0.144s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters +[0.144s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters +[0.144s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters +[0.144s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover +[0.144s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover +[0.144s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/root/robocup-software' +[0.144s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] +[0.144s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' +[0.144s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' +[0.144s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] +[0.144s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' +[0.144s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] +[0.144s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' +[0.145s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] +[0.145s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['ignore', 'ignore_ament_install'] +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'ignore' +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'ignore_ament_install' +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['colcon_pkg'] +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'colcon_pkg' +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['colcon_meta'] +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'colcon_meta' +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['ros'] +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'ros' +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['cmake', 'python'] +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'cmake' +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'python' +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['python_setup_py'] +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'python_setup_py' +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['ignore', 'ignore_ament_install'] +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'ignore' +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'ignore_ament_install' +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['colcon_pkg'] +[0.151s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'colcon_pkg' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['colcon_meta'] +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'colcon_meta' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['ros'] +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'ros' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['cmake', 'python'] +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'cmake' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'python' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['python_setup_py'] +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'python_setup_py' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['ignore', 'ignore_ament_install'] +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'ignore' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'ignore_ament_install' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['colcon_pkg'] +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'colcon_pkg' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['colcon_meta'] +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'colcon_meta' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['ros'] +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'ros' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['cmake', 'python'] +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'cmake' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'python' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['python_setup_py'] +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'python_setup_py' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['ignore', 'ignore_ament_install'] +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'ignore' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'ignore_ament_install' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['colcon_pkg'] +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'colcon_pkg' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['colcon_meta'] +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'colcon_meta' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['ros'] +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'ros' +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['cmake', 'python'] +[0.152s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'cmake' +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'python' +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['python_setup_py'] +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'python_setup_py' +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['ignore', 'ignore_ament_install'] +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'ignore' +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'ignore_ament_install' +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['colcon_pkg'] +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'colcon_pkg' +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['colcon_meta'] +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'colcon_meta' +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['ros'] +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'ros' +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['cmake', 'python'] +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'cmake' +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'python' +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['python_setup_py'] +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'python_setup_py' +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['ignore', 'ignore_ament_install'] +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'ignore' +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'ignore_ament_install' +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['colcon_pkg'] +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'colcon_pkg' +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['colcon_meta'] +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'colcon_meta' +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['ros'] +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'ros' +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['cmake', 'python'] +[0.153s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'cmake' +[0.154s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'python' +[0.154s] DEBUG:colcon.colcon_core.package_identification:Package 'src/docs' with type 'cmake' and name 'rj_robocup_docs' +[0.154s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['ignore', 'ignore_ament_install'] +[0.154s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'ignore' +[0.154s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'ignore_ament_install' +[0.154s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['colcon_pkg'] +[0.154s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'colcon_pkg' +[0.154s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['colcon_meta'] +[0.154s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'colcon_meta' +[0.154s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['ros'] +[0.154s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'ros' +[0.154s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['cmake', 'python'] +[0.154s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'cmake' +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'python' +[0.158s] DEBUG:colcon.colcon_core.package_identification:Package 'src/external' with type 'cmake' and name 'external' +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['ignore', 'ignore_ament_install'] +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'ignore' +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'ignore_ament_install' +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['colcon_pkg'] +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'colcon_pkg' +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['colcon_meta'] +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'colcon_meta' +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['ros'] +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'ros' +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['cmake', 'python'] +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'cmake' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'python' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['python_setup_py'] +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'python_setup_py' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['ignore', 'ignore_ament_install'] +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'ignore' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'ignore_ament_install' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['colcon_pkg'] +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'colcon_pkg' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['colcon_meta'] +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'colcon_meta' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['ros'] +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'ros' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['cmake', 'python'] +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'cmake' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'python' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['python_setup_py'] +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'python_setup_py' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['ignore', 'ignore_ament_install'] +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'ignore' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'ignore_ament_install' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['colcon_pkg'] +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'colcon_pkg' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['colcon_meta'] +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'colcon_meta' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['ros'] +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'ros' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['cmake', 'python'] +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'cmake' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'python' +[0.159s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_common' with type 'cmake' and name 'rj_common' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['ignore', 'ignore_ament_install'] +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'ignore' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'ignore_ament_install' +[0.160s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['colcon_pkg'] +[0.160s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'colcon_pkg' +[0.160s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['colcon_meta'] +[0.160s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'colcon_meta' +[0.160s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['ros'] +[0.160s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'ros' +[0.160s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['cmake', 'python'] +[0.160s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'cmake' +[0.160s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'python' +[0.160s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_config' with type 'cmake' and name 'rj_config' +[0.160s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['ignore', 'ignore_ament_install'] +[0.160s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'ignore' +[0.160s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'ignore_ament_install' +[0.160s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['colcon_pkg'] +[0.160s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'colcon_pkg' +[0.160s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['colcon_meta'] +[0.160s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'colcon_meta' +[0.160s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['ros'] +[0.160s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'ros' +[0.160s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['cmake', 'python'] +[0.160s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'cmake' +[0.161s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'python' +[0.161s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_constants' with type 'cmake' and name 'rj_constants' +[0.161s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['ignore', 'ignore_ament_install'] +[0.161s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'ignore' +[0.161s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'ignore_ament_install' +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['colcon_pkg'] +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'colcon_pkg' +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['colcon_meta'] +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'colcon_meta' +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['ros'] +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'ros' +[0.163s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_convert' with type 'ros.ament_cmake' and name 'rj_convert' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['ignore', 'ignore_ament_install'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'ignore' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'ignore_ament_install' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['colcon_pkg'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'colcon_pkg' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['colcon_meta'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'colcon_meta' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['ros'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'ros' +[0.163s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_drawing_msgs' with type 'ros.ament_cmake' and name 'rj_drawing_msgs' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['ignore', 'ignore_ament_install'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'ignore' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'ignore_ament_install' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['colcon_pkg'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'colcon_pkg' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['colcon_meta'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'colcon_meta' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['ros'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'ros' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['cmake', 'python'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'cmake' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'python' +[0.164s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_geometry' with type 'cmake' and name 'geometry2d' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['ignore', 'ignore_ament_install'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'ignore' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'ignore_ament_install' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['colcon_pkg'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'colcon_pkg' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['colcon_meta'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'colcon_meta' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['ros'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'ros' +[0.165s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_geometry_msgs' with type 'ros.ament_cmake' and name 'rj_geometry_msgs' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['ignore', 'ignore_ament_install'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'ignore' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'ignore_ament_install' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['colcon_pkg'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'colcon_pkg' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['colcon_meta'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'colcon_meta' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['ros'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'ros' +[0.165s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_msgs' with type 'ros.ament_cmake' and name 'rj_msgs' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['ignore', 'ignore_ament_install'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'ignore' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'ignore_ament_install' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['colcon_pkg'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'colcon_pkg' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['colcon_meta'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'colcon_meta' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['ros'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'ros' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['cmake', 'python'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'cmake' +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'python' +[0.166s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_param_utils' with type 'cmake' and name 'rj_param_utils' +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['ignore', 'ignore_ament_install'] +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'ignore' +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'ignore_ament_install' +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['colcon_pkg'] +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'colcon_pkg' +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['colcon_meta'] +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'colcon_meta' +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['ros'] +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'ros' +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['cmake', 'python'] +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'cmake' +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'python' +[0.166s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_protos' with type 'cmake' and name 'rj_protos' +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['ignore', 'ignore_ament_install'] +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'ignore' +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'ignore_ament_install' +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['colcon_pkg'] +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'colcon_pkg' +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['colcon_meta'] +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'colcon_meta' +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['ros'] +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'ros' +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['cmake', 'python'] +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'cmake' +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'python' +[0.166s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_topic_utils' with type 'cmake' and name 'rj_topic_utils' +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['ignore', 'ignore_ament_install'] +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'ignore' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'ignore_ament_install' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['colcon_pkg'] +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'colcon_pkg' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['colcon_meta'] +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'colcon_meta' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['ros'] +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'ros' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['cmake', 'python'] +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'cmake' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'python' +[0.167s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_utils' with type 'cmake' and name 'rj_utils' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['ignore', 'ignore_ament_install'] +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'ignore' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'ignore_ament_install' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['colcon_pkg'] +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'colcon_pkg' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['colcon_meta'] +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'colcon_meta' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['ros'] +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'ros' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['cmake', 'python'] +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'cmake' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'python' +[0.167s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_vision_receiver' with type 'cmake' and name 'rj_vision_receiver' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['ignore', 'ignore_ament_install'] +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'ignore' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'ignore_ament_install' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['colcon_pkg'] +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'colcon_pkg' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['colcon_meta'] +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'colcon_meta' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['ros'] +[0.168s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'ros' +[0.168s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['cmake', 'python'] +[0.168s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'cmake' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'python' +[0.169s] DEBUG:colcon.colcon_core.package_identification:Package 'src/soccer' with type 'cmake' and name 'soccer' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['ignore', 'ignore_ament_install'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'ignore' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'ignore_ament_install' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['colcon_pkg'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'colcon_pkg' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['colcon_meta'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'colcon_meta' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['ros'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'ros' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['cmake', 'python'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'cmake' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'python' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['python_setup_py'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'python_setup_py' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['ignore', 'ignore_ament_install'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'ignore' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'ignore_ament_install' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['colcon_pkg'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'colcon_pkg' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['colcon_meta'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'colcon_meta' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['ros'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'ros' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['cmake', 'python'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'cmake' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'python' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['python_setup_py'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'python_setup_py' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['ignore', 'ignore_ament_install'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'ignore' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'ignore_ament_install' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['colcon_pkg'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'colcon_pkg' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['colcon_meta'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'colcon_meta' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['ros'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'ros' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['cmake', 'python'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'cmake' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'python' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['python_setup_py'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'python_setup_py' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['ignore', 'ignore_ament_install'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'ignore' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'ignore_ament_install' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['colcon_pkg'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'colcon_pkg' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['colcon_meta'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'colcon_meta' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['ros'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'ros' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['cmake', 'python'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'cmake' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'python' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['python_setup_py'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'python_setup_py' +[0.170s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults +[0.170s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover +[0.170s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults +[0.170s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover +[0.170s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults +[0.186s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'external' in 'src/external' +[0.186s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_constants' in 'src/rj_constants' +[0.186s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_geometry_msgs' in 'src/rj_geometry_msgs' +[0.186s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_param_utils' in 'src/rj_param_utils' +[0.186s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_protos' in 'src/rj_protos' +[0.186s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_robocup_docs' in 'src/docs' +[0.186s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_topic_utils' in 'src/rj_topic_utils' +[0.186s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'geometry2d' in 'src/rj_geometry' +[0.186s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_drawing_msgs' in 'src/rj_drawing_msgs' +[0.186s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_msgs' in 'src/rj_msgs' +[0.186s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_common' in 'src/rj_common' +[0.186s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_config' in 'src/rj_config' +[0.186s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_utils' in 'src/rj_utils' +[0.186s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_vision_receiver' in 'src/rj_vision_receiver' +[0.186s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'soccer' in 'src/soccer' +[0.187s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters +[0.187s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover +[0.188s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 232 installed packages in /opt/ros/humble +[0.188s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults +[0.207s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_args' from command line to 'None' +[0.207s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_target' from command line to 'None' +[0.207s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_target_skip_unavailable' from command line to 'False' +[0.207s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_clean_cache' from command line to 'True' +[0.207s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_clean_first' from command line to 'False' +[0.207s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_force_configure' from command line to 'False' +[0.207s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'ament_cmake_args' from command line to 'None' +[0.207s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'catkin_cmake_args' from command line to 'None' +[0.207s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'catkin_skip_building_tests' from command line to 'False' +[0.207s] DEBUG:colcon.colcon_core.verb:Building package 'rj_convert' with the following arguments: {'ament_cmake_args': None, 'build_base': '/root/robocup-software/build/rj_convert', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': True, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/root/robocup-software/install/rj_convert', 'merge_install': False, 'path': '/root/robocup-software/src/rj_convert', 'symlink_install': False, 'test_result_base': None} +[0.207s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor +[0.208s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete +[0.208s] INFO:colcon.colcon_ros.task.ament_cmake.build:Building ROS package in '/root/robocup-software/src/rj_convert' with build type 'ament_cmake' +[0.208s] INFO:colcon.colcon_cmake.task.cmake.build:Building CMake package in '/root/robocup-software/src/rj_convert' +[0.209s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems +[0.209s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell +[0.209s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment +[0.213s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +[0.779s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/root/robocup-software/build/rj_convert' returned '1': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +[0.784s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(rj_convert) +[0.785s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert' for CMake module files +[0.785s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert' for CMake config files +[0.785s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/bin' +[0.785s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/lib/pkgconfig/rj_convert.pc' +[0.786s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/lib/python3.10/site-packages' +[0.786s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/bin' +[0.786s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.ps1' +[0.786s] INFO:colcon.colcon_core.shell:Creating package descriptor '/root/robocup-software/install/rj_convert/share/rj_convert/package.dsv' +[0.786s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.sh' +[0.787s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.bash' +[0.787s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.zsh' +[0.787s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/root/robocup-software/install/rj_convert/share/colcon-core/packages/rj_convert) +[0.788s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop +[0.788s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed +[0.788s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '1' +[0.788s] DEBUG:colcon.colcon_core.event_reactor:joining thread +[0.791s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems +[0.791s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems +[0.791s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' +[0.796s] DEBUG:colcon.colcon_core.event_reactor:joined thread +[0.797s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.ps1' +[0.798s] INFO:colcon.colcon_core.shell:Creating prefix util module '/root/robocup-software/install/_local_setup_util_ps1.py' +[0.799s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.ps1' +[0.800s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.sh' +[0.800s] INFO:colcon.colcon_core.shell:Creating prefix util module '/root/robocup-software/install/_local_setup_util_sh.py' +[0.801s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.sh' +[0.801s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.bash' +[0.801s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.bash' +[0.802s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.zsh' +[0.802s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.zsh' diff --git a/log/build_2025-01-30_16-22-14/rj_convert/command.log b/log/build_2025-01-30_16-22-14/rj_convert/command.log new file mode 100644 index 00000000000..f2dc63e0b95 --- /dev/null +++ b/log/build_2025-01-30_16-22-14/rj_convert/command.log @@ -0,0 +1,2 @@ +Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +Invoked command in '/root/robocup-software/build/rj_convert' returned '1': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert diff --git a/log/build_2025-01-30_16-22-14/rj_convert/stderr.log b/log/build_2025-01-30_16-22-14/rj_convert/stderr.log new file mode 100644 index 00000000000..11437a11e6a --- /dev/null +++ b/log/build_2025-01-30_16-22-14/rj_convert/stderr.log @@ -0,0 +1,17 @@ +CMake Error at test/CMakeLists.txt:3 (find_package): + By not providing "Findrj_convert.cmake" in CMAKE_MODULE_PATH this project + has asked CMake to find a package configuration file provided by + "rj_convert", but CMake did not find one. + + Could not find a package configuration file provided by "rj_convert" with + any of the following names: + + rj_convertConfig.cmake + rj_convert-config.cmake + + Add the installation prefix of "rj_convert" to CMAKE_PREFIX_PATH or set + "rj_convert_DIR" to a directory containing one of the above files. If + "rj_convert" provides a separate development package or SDK, be sure it has + been installed. + + diff --git a/log/build_2025-01-30_16-22-14/rj_convert/stdout.log b/log/build_2025-01-30_16-22-14/rj_convert/stdout.log new file mode 100644 index 00000000000..c347ca34539 --- /dev/null +++ b/log/build_2025-01-30_16-22-14/rj_convert/stdout.log @@ -0,0 +1,33 @@ +-- The C compiler identification is GNU 11.4.0 +-- The CXX compiler identification is GNU 11.4.0 +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Check for working C compiler: /usr/bin/cc - skipped +-- Detecting C compile features +-- Detecting C compile features - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Check for working CXX compiler: /usr/bin/c++ - skipped +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake) +-- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter +-- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake) +-- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake) +-- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake) +-- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake) +-- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c +-- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp +-- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake) +-- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake) +-- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") +-- Found FastRTPS: /opt/ros/humble/include +-- Using RMW implementation 'rmw_fastrtps_cpp' as default +-- Looking for pthread.h +-- Looking for pthread.h - found +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +-- Found Threads: TRUE +-- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake) +-- Configuring incomplete, errors occurred! +See also "/root/robocup-software/build/rj_convert/CMakeFiles/CMakeOutput.log". diff --git a/log/build_2025-01-30_16-22-14/rj_convert/stdout_stderr.log b/log/build_2025-01-30_16-22-14/rj_convert/stdout_stderr.log new file mode 100644 index 00000000000..8090e07389b --- /dev/null +++ b/log/build_2025-01-30_16-22-14/rj_convert/stdout_stderr.log @@ -0,0 +1,50 @@ +-- The C compiler identification is GNU 11.4.0 +-- The CXX compiler identification is GNU 11.4.0 +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Check for working C compiler: /usr/bin/cc - skipped +-- Detecting C compile features +-- Detecting C compile features - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Check for working CXX compiler: /usr/bin/c++ - skipped +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake) +-- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter +-- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake) +-- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake) +-- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake) +-- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake) +-- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c +-- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp +-- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake) +-- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake) +-- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") +-- Found FastRTPS: /opt/ros/humble/include +-- Using RMW implementation 'rmw_fastrtps_cpp' as default +-- Looking for pthread.h +-- Looking for pthread.h - found +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +-- Found Threads: TRUE +-- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake) +CMake Error at test/CMakeLists.txt:3 (find_package): + By not providing "Findrj_convert.cmake" in CMAKE_MODULE_PATH this project + has asked CMake to find a package configuration file provided by + "rj_convert", but CMake did not find one. + + Could not find a package configuration file provided by "rj_convert" with + any of the following names: + + rj_convertConfig.cmake + rj_convert-config.cmake + + Add the installation prefix of "rj_convert" to CMAKE_PREFIX_PATH or set + "rj_convert_DIR" to a directory containing one of the above files. If + "rj_convert" provides a separate development package or SDK, be sure it has + been installed. + + +-- Configuring incomplete, errors occurred! +See also "/root/robocup-software/build/rj_convert/CMakeFiles/CMakeOutput.log". diff --git a/log/build_2025-01-30_16-22-14/rj_convert/streams.log b/log/build_2025-01-30_16-22-14/rj_convert/streams.log new file mode 100644 index 00000000000..a6d2f857fd7 --- /dev/null +++ b/log/build_2025-01-30_16-22-14/rj_convert/streams.log @@ -0,0 +1,52 @@ +[0.004s] Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +[0.034s] -- The C compiler identification is GNU 11.4.0 +[0.062s] -- The CXX compiler identification is GNU 11.4.0 +[0.066s] -- Detecting C compiler ABI info +[0.098s] -- Detecting C compiler ABI info - done +[0.102s] -- Check for working C compiler: /usr/bin/cc - skipped +[0.103s] -- Detecting C compile features +[0.104s] -- Detecting C compile features - done +[0.106s] -- Detecting CXX compiler ABI info +[0.144s] -- Detecting CXX compiler ABI info - done +[0.149s] -- Check for working CXX compiler: /usr/bin/c++ - skipped +[0.149s] -- Detecting CXX compile features +[0.149s] -- Detecting CXX compile features - done +[0.150s] -- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake) +[0.224s] -- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter +[0.263s] -- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake) +[0.285s] -- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake) +[0.288s] -- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake) +[0.292s] -- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake) +[0.298s] -- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c +[0.307s] -- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp +[0.331s] -- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake) +[0.332s] -- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake) +[0.370s] -- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") +[0.383s] -- Found FastRTPS: /opt/ros/humble/include +[0.402s] -- Using RMW implementation 'rmw_fastrtps_cpp' as default +[0.407s] -- Looking for pthread.h +[0.444s] -- Looking for pthread.h - found +[0.444s] -- Performing Test CMAKE_HAVE_LIBC_PTHREAD +[0.478s] -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +[0.479s] -- Found Threads: TRUE +[0.518s] -- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake) +[0.564s] CMake Error at test/CMakeLists.txt:3 (find_package): +[0.564s] By not providing "Findrj_convert.cmake" in CMAKE_MODULE_PATH this project +[0.564s] has asked CMake to find a package configuration file provided by +[0.564s] "rj_convert", but CMake did not find one. +[0.564s] +[0.564s] Could not find a package configuration file provided by "rj_convert" with +[0.564s] any of the following names: +[0.564s] +[0.564s] rj_convertConfig.cmake +[0.564s] rj_convert-config.cmake +[0.564s] +[0.564s] Add the installation prefix of "rj_convert" to CMAKE_PREFIX_PATH or set +[0.564s] "rj_convert_DIR" to a directory containing one of the above files. If +[0.564s] "rj_convert" provides a separate development package or SDK, be sure it has +[0.564s] been installed. +[0.564s] +[0.564s]  +[0.565s] -- Configuring incomplete, errors occurred! +[0.565s] See also "/root/robocup-software/build/rj_convert/CMakeFiles/CMakeOutput.log". +[0.570s] Invoked command in '/root/robocup-software/build/rj_convert' returned '1': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert diff --git a/log/build_2025-01-30_16-28-22/events.log b/log/build_2025-01-30_16-28-22/events.log new file mode 100644 index 00000000000..20fef8c6ea6 --- /dev/null +++ b/log/build_2025-01-30_16-28-22/events.log @@ -0,0 +1,75 @@ +[0.000000] (-) TimerEvent: {} +[0.000068] (-) JobUnselected: {'identifier': 'external'} +[0.000085] (-) JobUnselected: {'identifier': 'geometry2d'} +[0.000094] (-) JobUnselected: {'identifier': 'rj_common'} +[0.000102] (-) JobUnselected: {'identifier': 'rj_config'} +[0.000118] (-) JobUnselected: {'identifier': 'rj_constants'} +[0.000129] (-) JobUnselected: {'identifier': 'rj_drawing_msgs'} +[0.000141] (-) JobUnselected: {'identifier': 'rj_geometry_msgs'} +[0.000149] (-) JobUnselected: {'identifier': 'rj_msgs'} +[0.000160] (-) JobUnselected: {'identifier': 'rj_param_utils'} +[0.000171] (-) JobUnselected: {'identifier': 'rj_protos'} +[0.000179] (-) JobUnselected: {'identifier': 'rj_robocup_docs'} +[0.000190] (-) JobUnselected: {'identifier': 'rj_topic_utils'} +[0.000201] (-) JobUnselected: {'identifier': 'rj_utils'} +[0.000209] (-) JobUnselected: {'identifier': 'rj_vision_receiver'} +[0.000220] (-) JobUnselected: {'identifier': 'soccer'} +[0.000230] (rj_convert) JobQueued: {'identifier': 'rj_convert', 'dependencies': OrderedDict()} +[0.000241] (rj_convert) JobStarted: {'identifier': 'rj_convert'} +[0.003652] (rj_convert) JobProgress: {'identifier': 'rj_convert', 'progress': 'cmake'} +[0.003918] (rj_convert) Command: {'cmd': ['/usr/bin/cmake', '/root/robocup-software/src/rj_convert', '-DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert'], 'cwd': '/root/robocup-software/build/rj_convert', 'env': OrderedDict([('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'root'), ('HOSTNAME', '883453f99e27'), ('GIT_ASKPASS', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/extensions/git/dist/askpass.sh'), ('SHLVL', '2'), ('LD_LIBRARY_PATH', '/opt/ros/humble/lib/aarch64-linux-gnu:/opt/ros/humble/lib'), ('BROWSER', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/bin/helpers/browser.sh'), ('HOME', '/root'), ('TERM_PROGRAM_VERSION', '1.96.4'), ('VSCODE_IPC_HOOK_CLI', '/tmp/vscode-ipc-0f19b725-94e1-4be6-974b-9e834c3e0ec8.sock'), ('ROS_PYTHON_VERSION', '3'), ('VSCODE_GIT_ASKPASS_MAIN', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/extensions/git/dist/askpass-main.js'), ('VSCODE_GIT_ASKPASS_NODE', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/node'), ('COLORTERM', 'truecolor'), ('REMOTE_CONTAINERS', 'true'), ('ROS_DISTRO', 'humble'), ('REMOTE_CONTAINERS_IPC', '/tmp/vscode-remote-containers-ipc-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('TERM', 'xterm-256color'), ('COLCON_MIXIN_PATH', '/root/robocup-software/mixin'), ('ROS_LOCALHOST_ONLY', '0'), ('PATH', '/opt/ros/humble/bin:/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/bin/remote-cli:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.vscode-server/data/User/globalStorage/github.copilot-chat/debugCommand'), ('REMOTE_CONTAINERS_SOCKETS', '["/tmp/vscode-ssh-auth-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock"]'), ('DISPLAY', ':1'), ('LANG', 'en_US.UTF-8'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/tmp/vscode-git-d1d340e128.sock'), ('TERM_PROGRAM', 'vscode'), ('SSH_AUTH_SOCK', '/tmp/vscode-ssh-auth-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock'), ('AMENT_PREFIX_PATH', '/opt/ros/humble'), ('DEBIAN_FRONTEND', 'noninteractive'), ('SHELL', '/bin/bash'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('PWD', '/root/robocup-software/build/rj_convert'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('TZ', 'America/New_York'), ('COLCON', '1'), ('CMAKE_PREFIX_PATH', '/opt/ros/humble')]), 'shell': False} +[0.064038] (rj_convert) StdoutLine: {'line': b'-- The C compiler identification is GNU 11.4.0\n'} +[0.100359] (-) TimerEvent: {} +[0.111170] (rj_convert) StdoutLine: {'line': b'-- The CXX compiler identification is GNU 11.4.0\n'} +[0.116250] (rj_convert) StdoutLine: {'line': b'-- Detecting C compiler ABI info\n'} +[0.155671] (rj_convert) StdoutLine: {'line': b'-- Detecting C compiler ABI info - done\n'} +[0.160605] (rj_convert) StdoutLine: {'line': b'-- Check for working C compiler: /usr/bin/cc - skipped\n'} +[0.160797] (rj_convert) StdoutLine: {'line': b'-- Detecting C compile features\n'} +[0.161180] (rj_convert) StdoutLine: {'line': b'-- Detecting C compile features - done\n'} +[0.163238] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compiler ABI info\n'} +[0.201377] (-) TimerEvent: {} +[0.202480] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compiler ABI info - done\n'} +[0.207568] (rj_convert) StdoutLine: {'line': b'-- Check for working CXX compiler: /usr/bin/c++ - skipped\n'} +[0.207760] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compile features\n'} +[0.208116] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compile features - done\n'} +[0.209867] (rj_convert) StdoutLine: {'line': b'-- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake)\n'} +[0.281757] (rj_convert) StdoutLine: {'line': b'-- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter \n'} +[0.302171] (-) TimerEvent: {} +[0.321184] (rj_convert) StdoutLine: {'line': b'-- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake)\n'} +[0.344493] (rj_convert) StdoutLine: {'line': b'-- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake)\n'} +[0.346964] (rj_convert) StdoutLine: {'line': b'-- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake)\n'} +[0.351915] (rj_convert) StdoutLine: {'line': b'-- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake)\n'} +[0.359579] (rj_convert) StdoutLine: {'line': b'-- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c\n'} +[0.368694] (rj_convert) StdoutLine: {'line': b'-- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp\n'} +[0.393522] (rj_convert) StdoutLine: {'line': b'-- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake)\n'} +[0.394748] (rj_convert) StdoutLine: {'line': b'-- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake)\n'} +[0.402472] (-) TimerEvent: {} +[0.435121] (rj_convert) StdoutLine: {'line': b'-- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") \n'} +[0.449839] (rj_convert) StdoutLine: {'line': b'-- Found FastRTPS: /opt/ros/humble/include \n'} +[0.489063] (rj_convert) StdoutLine: {'line': b"-- Using RMW implementation 'rmw_fastrtps_cpp' as default\n"} +[0.493633] (rj_convert) StdoutLine: {'line': b'-- Looking for pthread.h\n'} +[0.503374] (-) TimerEvent: {} +[0.533367] (rj_convert) StdoutLine: {'line': b'-- Looking for pthread.h - found\n'} +[0.533717] (rj_convert) StdoutLine: {'line': b'-- Performing Test CMAKE_HAVE_LIBC_PTHREAD\n'} +[0.570839] (rj_convert) StdoutLine: {'line': b'-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success\n'} +[0.571719] (rj_convert) StdoutLine: {'line': b'-- Found Threads: TRUE \n'} +[0.604379] (-) TimerEvent: {} +[0.606432] (rj_convert) StdoutLine: {'line': b'-- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake)\n'} +[0.649979] (rj_convert) StdoutLine: {'line': b"-- Found gtest sources under '/opt/ros/humble/src/gtest_vendor': C++ tests using 'Google Test' will be built\n"} +[0.657006] (rj_convert) StdoutLine: {'line': b"-- Added test 'copyright' to check source files copyright and LICENSE\n"} +[0.657628] (rj_convert) StdoutLine: {'line': b"-- Added test 'cppcheck' to perform static code analysis on C / C++ code\n"} +[0.657723] (rj_convert) StdoutLine: {'line': b'-- Configured cppcheck include dirs: /root/robocup-software/src/rj_convert/include\n'} +[0.657759] (rj_convert) StdoutLine: {'line': b'-- Configured cppcheck exclude dirs and/or files: \n'} +[0.658173] (rj_convert) StdoutLine: {'line': b"-- Added test 'cpplint' to check C / C++ code against the Google style\n"} +[0.658208] (rj_convert) StdoutLine: {'line': b'-- Configured cpplint exclude dirs and/or files: \n'} +[0.658575] (rj_convert) StdoutLine: {'line': b"-- Added test 'lint_cmake' to check CMake code style\n"} +[0.659107] (rj_convert) StdoutLine: {'line': b"-- Added test 'uncrustify' to check C / C++ code style\n"} +[0.659148] (rj_convert) StdoutLine: {'line': b'-- Configured uncrustify additional arguments: \n'} +[0.659373] (rj_convert) StdoutLine: {'line': b"-- Added test 'xmllint' to check XML markup files\n"} +[0.661551] (rj_convert) StdoutLine: {'line': b'-- Configuring done\n'} +[0.668317] (rj_convert) StderrLine: {'line': b'\x1b[0mCMake Error: INSTALL(EXPORT) given unknown export "rj_convert"\x1b[0m\n'} +[0.670163] (rj_convert) StdoutLine: {'line': b'-- Generating done\n'} +[0.671052] (rj_convert) StderrLine: {'line': b'\x1b[0mCMake Generate step failed. Build files cannot be regenerated correctly.\x1b[0m\n'} +[0.675648] (rj_convert) CommandEnded: {'returncode': 1} +[0.685319] (rj_convert) JobEnded: {'identifier': 'rj_convert', 'rc': 1} +[0.695729] (-) EventReactorShutdown: {} diff --git a/log/build_2025-01-30_16-28-22/logger_all.log b/log/build_2025-01-30_16-28-22/logger_all.log new file mode 100644 index 00000000000..79255a256d7 --- /dev/null +++ b/log/build_2025-01-30_16-28-22/logger_all.log @@ -0,0 +1,471 @@ +[0.064s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build', '--packages-select', 'rj_convert', '--cmake-clean-cache'] +[0.064s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=10, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=['rj_convert'], packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=True, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) +[0.155s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters +[0.155s] INFO:colcon.colcon_metadata.package_discovery.colcon_meta:Using configuration from '/root/robocup-software/colcon.meta' +[0.155s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters +[0.155s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters +[0.155s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters +[0.155s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover +[0.155s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover +[0.155s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/root/robocup-software' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['ignore', 'ignore_ament_install'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'ignore' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'ignore_ament_install' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['colcon_pkg'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'colcon_pkg' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['colcon_meta'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'colcon_meta' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['ros'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'ros' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['cmake', 'python'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'cmake' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'python' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['python_setup_py'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'python_setup_py' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['ignore', 'ignore_ament_install'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'ignore' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'ignore_ament_install' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['colcon_pkg'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'colcon_pkg' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['colcon_meta'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'colcon_meta' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['ros'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'ros' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['cmake', 'python'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'cmake' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'python' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['python_setup_py'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'python_setup_py' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['ignore', 'ignore_ament_install'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'ignore' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'ignore_ament_install' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['colcon_pkg'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'colcon_pkg' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['colcon_meta'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'colcon_meta' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['ros'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'ros' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['cmake', 'python'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'cmake' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'python' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['python_setup_py'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'python_setup_py' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['ignore', 'ignore_ament_install'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'ignore' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'ignore_ament_install' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['colcon_pkg'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'colcon_pkg' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['colcon_meta'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'colcon_meta' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['ros'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'ros' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['cmake', 'python'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'cmake' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'python' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['python_setup_py'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'python_setup_py' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['ignore', 'ignore_ament_install'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'ignore' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'ignore_ament_install' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['colcon_pkg'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'colcon_pkg' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['colcon_meta'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'colcon_meta' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['ros'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'ros' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['cmake', 'python'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'cmake' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'python' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['python_setup_py'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'python_setup_py' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['ignore', 'ignore_ament_install'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'ignore' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'ignore_ament_install' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['colcon_pkg'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'colcon_pkg' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['colcon_meta'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'colcon_meta' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['ros'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'ros' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['cmake', 'python'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'cmake' +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'python' +[0.166s] DEBUG:colcon.colcon_core.package_identification:Package 'src/docs' with type 'cmake' and name 'rj_robocup_docs' +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['ignore', 'ignore_ament_install'] +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'ignore' +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'ignore_ament_install' +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['colcon_pkg'] +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'colcon_pkg' +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['colcon_meta'] +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'colcon_meta' +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['ros'] +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'ros' +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['cmake', 'python'] +[0.166s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'cmake' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'python' +[0.170s] DEBUG:colcon.colcon_core.package_identification:Package 'src/external' with type 'cmake' and name 'external' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['ignore', 'ignore_ament_install'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'ignore' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'ignore_ament_install' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['colcon_pkg'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'colcon_pkg' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['colcon_meta'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'colcon_meta' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['ros'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'ros' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['cmake', 'python'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'cmake' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'python' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['python_setup_py'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'python_setup_py' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['ignore', 'ignore_ament_install'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'ignore' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'ignore_ament_install' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['colcon_pkg'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'colcon_pkg' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['colcon_meta'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'colcon_meta' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['ros'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'ros' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['cmake', 'python'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'cmake' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'python' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['python_setup_py'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'python_setup_py' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['ignore', 'ignore_ament_install'] +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'ignore' +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'ignore_ament_install' +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['colcon_pkg'] +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'colcon_pkg' +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['colcon_meta'] +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'colcon_meta' +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['ros'] +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'ros' +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['cmake', 'python'] +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'cmake' +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'python' +[0.172s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_common' with type 'cmake' and name 'rj_common' +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['ignore', 'ignore_ament_install'] +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'ignore' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'ignore_ament_install' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['colcon_pkg'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'colcon_pkg' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['colcon_meta'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'colcon_meta' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['ros'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'ros' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['cmake', 'python'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'cmake' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'python' +[0.173s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_config' with type 'cmake' and name 'rj_config' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['ignore', 'ignore_ament_install'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'ignore' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'ignore_ament_install' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['colcon_pkg'] +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'colcon_pkg' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['colcon_meta'] +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'colcon_meta' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['ros'] +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'ros' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['cmake', 'python'] +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'cmake' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'python' +[0.174s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_constants' with type 'cmake' and name 'rj_constants' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['ignore', 'ignore_ament_install'] +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'ignore' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'ignore_ament_install' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['colcon_pkg'] +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'colcon_pkg' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['colcon_meta'] +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'colcon_meta' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['ros'] +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'ros' +[0.176s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_convert' with type 'ros.ament_cmake' and name 'rj_convert' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['ignore', 'ignore_ament_install'] +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'ignore' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'ignore_ament_install' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['colcon_pkg'] +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'colcon_pkg' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['colcon_meta'] +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'colcon_meta' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['ros'] +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'ros' +[0.176s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_drawing_msgs' with type 'ros.ament_cmake' and name 'rj_drawing_msgs' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['ignore', 'ignore_ament_install'] +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'ignore' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'ignore_ament_install' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['colcon_pkg'] +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'colcon_pkg' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['colcon_meta'] +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'colcon_meta' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['ros'] +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'ros' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['cmake', 'python'] +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'cmake' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'python' +[0.177s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_geometry' with type 'cmake' and name 'geometry2d' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['ignore', 'ignore_ament_install'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'ignore' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'ignore_ament_install' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['colcon_pkg'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'colcon_pkg' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['colcon_meta'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'colcon_meta' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['ros'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'ros' +[0.177s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_geometry_msgs' with type 'ros.ament_cmake' and name 'rj_geometry_msgs' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['ignore', 'ignore_ament_install'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'ignore' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'ignore_ament_install' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['colcon_pkg'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'colcon_pkg' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['colcon_meta'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'colcon_meta' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['ros'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'ros' +[0.178s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_msgs' with type 'ros.ament_cmake' and name 'rj_msgs' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['ignore', 'ignore_ament_install'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'ignore' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'ignore_ament_install' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['colcon_pkg'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'colcon_pkg' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['colcon_meta'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'colcon_meta' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['ros'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'ros' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['cmake', 'python'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'cmake' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'python' +[0.178s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_param_utils' with type 'cmake' and name 'rj_param_utils' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['ignore', 'ignore_ament_install'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'ignore' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'ignore_ament_install' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['colcon_pkg'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'colcon_pkg' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['colcon_meta'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'colcon_meta' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['ros'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'ros' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['cmake', 'python'] +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'cmake' +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'python' +[0.179s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_protos' with type 'cmake' and name 'rj_protos' +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['ignore', 'ignore_ament_install'] +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'ignore' +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'ignore_ament_install' +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['colcon_pkg'] +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'colcon_pkg' +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['colcon_meta'] +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'colcon_meta' +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['ros'] +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'ros' +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['cmake', 'python'] +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'cmake' +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'python' +[0.179s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_topic_utils' with type 'cmake' and name 'rj_topic_utils' +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['ignore', 'ignore_ament_install'] +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'ignore' +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'ignore_ament_install' +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['colcon_pkg'] +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'colcon_pkg' +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['colcon_meta'] +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'colcon_meta' +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['ros'] +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'ros' +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['cmake', 'python'] +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'cmake' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'python' +[0.180s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_utils' with type 'cmake' and name 'rj_utils' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['ignore', 'ignore_ament_install'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'ignore' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'ignore_ament_install' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['colcon_pkg'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'colcon_pkg' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['colcon_meta'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'colcon_meta' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['ros'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'ros' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['cmake', 'python'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'cmake' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'python' +[0.180s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_vision_receiver' with type 'cmake' and name 'rj_vision_receiver' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['ignore', 'ignore_ament_install'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'ignore' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'ignore_ament_install' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['colcon_pkg'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'colcon_pkg' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['colcon_meta'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'colcon_meta' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['ros'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'ros' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['cmake', 'python'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'cmake' +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'python' +[0.182s] DEBUG:colcon.colcon_core.package_identification:Package 'src/soccer' with type 'cmake' and name 'soccer' +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['ignore', 'ignore_ament_install'] +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'ignore' +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'ignore_ament_install' +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['colcon_pkg'] +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'colcon_pkg' +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['colcon_meta'] +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'colcon_meta' +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['ros'] +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'ros' +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['cmake', 'python'] +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'cmake' +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'python' +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['python_setup_py'] +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'python_setup_py' +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['ignore', 'ignore_ament_install'] +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'ignore' +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'ignore_ament_install' +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['colcon_pkg'] +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'colcon_pkg' +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['colcon_meta'] +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'colcon_meta' +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['ros'] +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'ros' +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['cmake', 'python'] +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'cmake' +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'python' +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['python_setup_py'] +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'python_setup_py' +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['ignore', 'ignore_ament_install'] +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'ignore' +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'ignore_ament_install' +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['colcon_pkg'] +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'colcon_pkg' +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['colcon_meta'] +[0.182s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'colcon_meta' +[0.183s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['ros'] +[0.183s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'ros' +[0.183s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['cmake', 'python'] +[0.183s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'cmake' +[0.183s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'python' +[0.183s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['python_setup_py'] +[0.183s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'python_setup_py' +[0.183s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['ignore', 'ignore_ament_install'] +[0.183s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'ignore' +[0.183s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'ignore_ament_install' +[0.183s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['colcon_pkg'] +[0.183s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'colcon_pkg' +[0.183s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['colcon_meta'] +[0.183s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'colcon_meta' +[0.183s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['ros'] +[0.183s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'ros' +[0.183s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['cmake', 'python'] +[0.183s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'cmake' +[0.183s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'python' +[0.183s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['python_setup_py'] +[0.183s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'python_setup_py' +[0.183s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults +[0.183s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover +[0.183s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults +[0.183s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover +[0.183s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'external' in 'src/external' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_constants' in 'src/rj_constants' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_geometry_msgs' in 'src/rj_geometry_msgs' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_param_utils' in 'src/rj_param_utils' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_protos' in 'src/rj_protos' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_robocup_docs' in 'src/docs' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_topic_utils' in 'src/rj_topic_utils' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'geometry2d' in 'src/rj_geometry' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_drawing_msgs' in 'src/rj_drawing_msgs' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_msgs' in 'src/rj_msgs' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_common' in 'src/rj_common' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_config' in 'src/rj_config' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_utils' in 'src/rj_utils' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_vision_receiver' in 'src/rj_vision_receiver' +[0.201s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'soccer' in 'src/soccer' +[0.201s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters +[0.201s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover +[0.202s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 232 installed packages in /opt/ros/humble +[0.203s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults +[0.223s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_args' from command line to 'None' +[0.223s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_target' from command line to 'None' +[0.223s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_target_skip_unavailable' from command line to 'False' +[0.223s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_clean_cache' from command line to 'True' +[0.223s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_clean_first' from command line to 'False' +[0.223s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_force_configure' from command line to 'False' +[0.223s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'ament_cmake_args' from command line to 'None' +[0.223s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'catkin_cmake_args' from command line to 'None' +[0.223s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'catkin_skip_building_tests' from command line to 'False' +[0.223s] DEBUG:colcon.colcon_core.verb:Building package 'rj_convert' with the following arguments: {'ament_cmake_args': None, 'build_base': '/root/robocup-software/build/rj_convert', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': True, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/root/robocup-software/install/rj_convert', 'merge_install': False, 'path': '/root/robocup-software/src/rj_convert', 'symlink_install': False, 'test_result_base': None} +[0.223s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor +[0.223s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete +[0.224s] INFO:colcon.colcon_ros.task.ament_cmake.build:Building ROS package in '/root/robocup-software/src/rj_convert' with build type 'ament_cmake' +[0.224s] INFO:colcon.colcon_cmake.task.cmake.build:Building CMake package in '/root/robocup-software/src/rj_convert' +[0.225s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems +[0.225s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell +[0.225s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment +[0.228s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +[0.900s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/root/robocup-software/build/rj_convert' returned '1': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +[0.905s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(rj_convert) +[0.906s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert' for CMake module files +[0.907s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert' for CMake config files +[0.907s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/bin' +[0.907s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/lib/pkgconfig/rj_convert.pc' +[0.907s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/lib/python3.10/site-packages' +[0.907s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/bin' +[0.907s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.ps1' +[0.908s] INFO:colcon.colcon_core.shell:Creating package descriptor '/root/robocup-software/install/rj_convert/share/rj_convert/package.dsv' +[0.908s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.sh' +[0.908s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.bash' +[0.909s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.zsh' +[0.909s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/root/robocup-software/install/rj_convert/share/colcon-core/packages/rj_convert) +[0.919s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop +[0.919s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed +[0.919s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '1' +[0.919s] DEBUG:colcon.colcon_core.event_reactor:joining thread +[0.923s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems +[0.923s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems +[0.923s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' +[0.936s] DEBUG:colcon.colcon_core.event_reactor:joined thread +[0.937s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.ps1' +[0.938s] INFO:colcon.colcon_core.shell:Creating prefix util module '/root/robocup-software/install/_local_setup_util_ps1.py' +[0.939s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.ps1' +[0.940s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.sh' +[0.940s] INFO:colcon.colcon_core.shell:Creating prefix util module '/root/robocup-software/install/_local_setup_util_sh.py' +[0.941s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.sh' +[0.941s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.bash' +[0.942s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.bash' +[0.942s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.zsh' +[0.942s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.zsh' diff --git a/log/build_2025-01-30_16-28-22/rj_convert/command.log b/log/build_2025-01-30_16-28-22/rj_convert/command.log new file mode 100644 index 00000000000..f2dc63e0b95 --- /dev/null +++ b/log/build_2025-01-30_16-28-22/rj_convert/command.log @@ -0,0 +1,2 @@ +Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +Invoked command in '/root/robocup-software/build/rj_convert' returned '1': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert diff --git a/log/build_2025-01-30_16-28-22/rj_convert/stderr.log b/log/build_2025-01-30_16-28-22/rj_convert/stderr.log new file mode 100644 index 00000000000..b77c28ae7cc --- /dev/null +++ b/log/build_2025-01-30_16-28-22/rj_convert/stderr.log @@ -0,0 +1,2 @@ +CMake Error: INSTALL(EXPORT) given unknown export "rj_convert" +CMake Generate step failed. Build files cannot be regenerated correctly. diff --git a/log/build_2025-01-30_16-28-22/rj_convert/stdout.log b/log/build_2025-01-30_16-28-22/rj_convert/stdout.log new file mode 100644 index 00000000000..f31a495b254 --- /dev/null +++ b/log/build_2025-01-30_16-28-22/rj_convert/stdout.log @@ -0,0 +1,44 @@ +-- The C compiler identification is GNU 11.4.0 +-- The CXX compiler identification is GNU 11.4.0 +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Check for working C compiler: /usr/bin/cc - skipped +-- Detecting C compile features +-- Detecting C compile features - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Check for working CXX compiler: /usr/bin/c++ - skipped +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake) +-- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter +-- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake) +-- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake) +-- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake) +-- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake) +-- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c +-- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp +-- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake) +-- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake) +-- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") +-- Found FastRTPS: /opt/ros/humble/include +-- Using RMW implementation 'rmw_fastrtps_cpp' as default +-- Looking for pthread.h +-- Looking for pthread.h - found +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +-- Found Threads: TRUE +-- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake) +-- Found gtest sources under '/opt/ros/humble/src/gtest_vendor': C++ tests using 'Google Test' will be built +-- Added test 'copyright' to check source files copyright and LICENSE +-- Added test 'cppcheck' to perform static code analysis on C / C++ code +-- Configured cppcheck include dirs: /root/robocup-software/src/rj_convert/include +-- Configured cppcheck exclude dirs and/or files: +-- Added test 'cpplint' to check C / C++ code against the Google style +-- Configured cpplint exclude dirs and/or files: +-- Added test 'lint_cmake' to check CMake code style +-- Added test 'uncrustify' to check C / C++ code style +-- Configured uncrustify additional arguments: +-- Added test 'xmllint' to check XML markup files +-- Configuring done +-- Generating done diff --git a/log/build_2025-01-30_16-28-22/rj_convert/stdout_stderr.log b/log/build_2025-01-30_16-28-22/rj_convert/stdout_stderr.log new file mode 100644 index 00000000000..fc94df256a7 --- /dev/null +++ b/log/build_2025-01-30_16-28-22/rj_convert/stdout_stderr.log @@ -0,0 +1,46 @@ +-- The C compiler identification is GNU 11.4.0 +-- The CXX compiler identification is GNU 11.4.0 +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Check for working C compiler: /usr/bin/cc - skipped +-- Detecting C compile features +-- Detecting C compile features - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Check for working CXX compiler: /usr/bin/c++ - skipped +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake) +-- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter +-- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake) +-- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake) +-- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake) +-- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake) +-- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c +-- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp +-- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake) +-- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake) +-- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") +-- Found FastRTPS: /opt/ros/humble/include +-- Using RMW implementation 'rmw_fastrtps_cpp' as default +-- Looking for pthread.h +-- Looking for pthread.h - found +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +-- Found Threads: TRUE +-- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake) +-- Found gtest sources under '/opt/ros/humble/src/gtest_vendor': C++ tests using 'Google Test' will be built +-- Added test 'copyright' to check source files copyright and LICENSE +-- Added test 'cppcheck' to perform static code analysis on C / C++ code +-- Configured cppcheck include dirs: /root/robocup-software/src/rj_convert/include +-- Configured cppcheck exclude dirs and/or files: +-- Added test 'cpplint' to check C / C++ code against the Google style +-- Configured cpplint exclude dirs and/or files: +-- Added test 'lint_cmake' to check CMake code style +-- Added test 'uncrustify' to check C / C++ code style +-- Configured uncrustify additional arguments: +-- Added test 'xmllint' to check XML markup files +-- Configuring done +CMake Error: INSTALL(EXPORT) given unknown export "rj_convert" +-- Generating done +CMake Generate step failed. Build files cannot be regenerated correctly. diff --git a/log/build_2025-01-30_16-28-22/rj_convert/streams.log b/log/build_2025-01-30_16-28-22/rj_convert/streams.log new file mode 100644 index 00000000000..a14b605f270 --- /dev/null +++ b/log/build_2025-01-30_16-28-22/rj_convert/streams.log @@ -0,0 +1,48 @@ +[0.004s] Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +[0.064s] -- The C compiler identification is GNU 11.4.0 +[0.111s] -- The CXX compiler identification is GNU 11.4.0 +[0.116s] -- Detecting C compiler ABI info +[0.156s] -- Detecting C compiler ABI info - done +[0.160s] -- Check for working C compiler: /usr/bin/cc - skipped +[0.161s] -- Detecting C compile features +[0.161s] -- Detecting C compile features - done +[0.163s] -- Detecting CXX compiler ABI info +[0.202s] -- Detecting CXX compiler ABI info - done +[0.207s] -- Check for working CXX compiler: /usr/bin/c++ - skipped +[0.208s] -- Detecting CXX compile features +[0.208s] -- Detecting CXX compile features - done +[0.210s] -- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake) +[0.282s] -- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter +[0.321s] -- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake) +[0.344s] -- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake) +[0.347s] -- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake) +[0.352s] -- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake) +[0.359s] -- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c +[0.369s] -- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp +[0.393s] -- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake) +[0.395s] -- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake) +[0.435s] -- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") +[0.450s] -- Found FastRTPS: /opt/ros/humble/include +[0.489s] -- Using RMW implementation 'rmw_fastrtps_cpp' as default +[0.493s] -- Looking for pthread.h +[0.533s] -- Looking for pthread.h - found +[0.534s] -- Performing Test CMAKE_HAVE_LIBC_PTHREAD +[0.571s] -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +[0.572s] -- Found Threads: TRUE +[0.606s] -- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake) +[0.650s] -- Found gtest sources under '/opt/ros/humble/src/gtest_vendor': C++ tests using 'Google Test' will be built +[0.657s] -- Added test 'copyright' to check source files copyright and LICENSE +[0.657s] -- Added test 'cppcheck' to perform static code analysis on C / C++ code +[0.658s] -- Configured cppcheck include dirs: /root/robocup-software/src/rj_convert/include +[0.658s] -- Configured cppcheck exclude dirs and/or files: +[0.658s] -- Added test 'cpplint' to check C / C++ code against the Google style +[0.658s] -- Configured cpplint exclude dirs and/or files: +[0.658s] -- Added test 'lint_cmake' to check CMake code style +[0.659s] -- Added test 'uncrustify' to check C / C++ code style +[0.659s] -- Configured uncrustify additional arguments: +[0.659s] -- Added test 'xmllint' to check XML markup files +[0.661s] -- Configuring done +[0.668s] CMake Error: INSTALL(EXPORT) given unknown export "rj_convert" +[0.670s] -- Generating done +[0.671s] CMake Generate step failed. Build files cannot be regenerated correctly. +[0.676s] Invoked command in '/root/robocup-software/build/rj_convert' returned '1': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert diff --git a/log/build_2025-01-30_16-29-43/events.log b/log/build_2025-01-30_16-29-43/events.log new file mode 100644 index 00000000000..e321d35ee4c --- /dev/null +++ b/log/build_2025-01-30_16-29-43/events.log @@ -0,0 +1,75 @@ +[0.000000] (-) TimerEvent: {} +[0.000925] (-) JobUnselected: {'identifier': 'external'} +[0.000957] (-) JobUnselected: {'identifier': 'geometry2d'} +[0.000971] (-) JobUnselected: {'identifier': 'rj_common'} +[0.000984] (-) JobUnselected: {'identifier': 'rj_config'} +[0.000996] (-) JobUnselected: {'identifier': 'rj_constants'} +[0.001005] (-) JobUnselected: {'identifier': 'rj_drawing_msgs'} +[0.001013] (-) JobUnselected: {'identifier': 'rj_geometry_msgs'} +[0.001022] (-) JobUnselected: {'identifier': 'rj_msgs'} +[0.001030] (-) JobUnselected: {'identifier': 'rj_param_utils'} +[0.001038] (-) JobUnselected: {'identifier': 'rj_protos'} +[0.001049] (-) JobUnselected: {'identifier': 'rj_robocup_docs'} +[0.001057] (-) JobUnselected: {'identifier': 'rj_topic_utils'} +[0.001065] (-) JobUnselected: {'identifier': 'rj_utils'} +[0.001072] (-) JobUnselected: {'identifier': 'rj_vision_receiver'} +[0.001080] (-) JobUnselected: {'identifier': 'soccer'} +[0.001090] (rj_convert) JobQueued: {'identifier': 'rj_convert', 'dependencies': OrderedDict()} +[0.001103] (rj_convert) JobStarted: {'identifier': 'rj_convert'} +[0.004228] (rj_convert) JobProgress: {'identifier': 'rj_convert', 'progress': 'cmake'} +[0.004445] (rj_convert) Command: {'cmd': ['/usr/bin/cmake', '/root/robocup-software/src/rj_convert', '-DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert'], 'cwd': '/root/robocup-software/build/rj_convert', 'env': OrderedDict([('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'root'), ('HOSTNAME', '883453f99e27'), ('GIT_ASKPASS', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/extensions/git/dist/askpass.sh'), ('SHLVL', '2'), ('LD_LIBRARY_PATH', '/opt/ros/humble/lib/aarch64-linux-gnu:/opt/ros/humble/lib'), ('BROWSER', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/bin/helpers/browser.sh'), ('HOME', '/root'), ('TERM_PROGRAM_VERSION', '1.96.4'), ('VSCODE_IPC_HOOK_CLI', '/tmp/vscode-ipc-0f19b725-94e1-4be6-974b-9e834c3e0ec8.sock'), ('ROS_PYTHON_VERSION', '3'), ('VSCODE_GIT_ASKPASS_MAIN', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/extensions/git/dist/askpass-main.js'), ('VSCODE_GIT_ASKPASS_NODE', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/node'), ('COLORTERM', 'truecolor'), ('REMOTE_CONTAINERS', 'true'), ('ROS_DISTRO', 'humble'), ('REMOTE_CONTAINERS_IPC', '/tmp/vscode-remote-containers-ipc-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('TERM', 'xterm-256color'), ('COLCON_MIXIN_PATH', '/root/robocup-software/mixin'), ('ROS_LOCALHOST_ONLY', '0'), ('PATH', '/opt/ros/humble/bin:/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/bin/remote-cli:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.vscode-server/data/User/globalStorage/github.copilot-chat/debugCommand'), ('REMOTE_CONTAINERS_SOCKETS', '["/tmp/vscode-ssh-auth-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock"]'), ('DISPLAY', ':1'), ('LANG', 'en_US.UTF-8'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/tmp/vscode-git-d1d340e128.sock'), ('TERM_PROGRAM', 'vscode'), ('SSH_AUTH_SOCK', '/tmp/vscode-ssh-auth-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock'), ('AMENT_PREFIX_PATH', '/opt/ros/humble'), ('DEBIAN_FRONTEND', 'noninteractive'), ('SHELL', '/bin/bash'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('PWD', '/root/robocup-software/build/rj_convert'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('TZ', 'America/New_York'), ('COLCON', '1'), ('CMAKE_PREFIX_PATH', '/opt/ros/humble')]), 'shell': False} +[0.041772] (rj_convert) StdoutLine: {'line': b'-- The C compiler identification is GNU 11.4.0\n'} +[0.071678] (rj_convert) StdoutLine: {'line': b'-- The CXX compiler identification is GNU 11.4.0\n'} +[0.075844] (rj_convert) StdoutLine: {'line': b'-- Detecting C compiler ABI info\n'} +[0.100316] (-) TimerEvent: {} +[0.111569] (rj_convert) StdoutLine: {'line': b'-- Detecting C compiler ABI info - done\n'} +[0.116433] (rj_convert) StdoutLine: {'line': b'-- Check for working C compiler: /usr/bin/cc - skipped\n'} +[0.116642] (rj_convert) StdoutLine: {'line': b'-- Detecting C compile features\n'} +[0.116986] (rj_convert) StdoutLine: {'line': b'-- Detecting C compile features - done\n'} +[0.119314] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compiler ABI info\n'} +[0.158179] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compiler ABI info - done\n'} +[0.163214] (rj_convert) StdoutLine: {'line': b'-- Check for working CXX compiler: /usr/bin/c++ - skipped\n'} +[0.163406] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compile features\n'} +[0.163901] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compile features - done\n'} +[0.165131] (rj_convert) StdoutLine: {'line': b'-- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake)\n'} +[0.201507] (-) TimerEvent: {} +[0.236971] (rj_convert) StdoutLine: {'line': b'-- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter \n'} +[0.274123] (rj_convert) StdoutLine: {'line': b'-- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake)\n'} +[0.295480] (rj_convert) StdoutLine: {'line': b'-- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake)\n'} +[0.297701] (rj_convert) StdoutLine: {'line': b'-- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake)\n'} +[0.301874] (-) TimerEvent: {} +[0.302032] (rj_convert) StdoutLine: {'line': b'-- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake)\n'} +[0.308430] (rj_convert) StdoutLine: {'line': b'-- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c\n'} +[0.317217] (rj_convert) StdoutLine: {'line': b'-- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp\n'} +[0.341407] (rj_convert) StdoutLine: {'line': b'-- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake)\n'} +[0.342557] (rj_convert) StdoutLine: {'line': b'-- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake)\n'} +[0.380934] (rj_convert) StdoutLine: {'line': b'-- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") \n'} +[0.392019] (rj_convert) StdoutLine: {'line': b'-- Found FastRTPS: /opt/ros/humble/include \n'} +[0.403448] (-) TimerEvent: {} +[0.411499] (rj_convert) StdoutLine: {'line': b"-- Using RMW implementation 'rmw_fastrtps_cpp' as default\n"} +[0.415750] (rj_convert) StdoutLine: {'line': b'-- Looking for pthread.h\n'} +[0.454202] (rj_convert) StdoutLine: {'line': b'-- Looking for pthread.h - found\n'} +[0.454523] (rj_convert) StdoutLine: {'line': b'-- Performing Test CMAKE_HAVE_LIBC_PTHREAD\n'} +[0.489848] (rj_convert) StdoutLine: {'line': b'-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success\n'} +[0.490627] (rj_convert) StdoutLine: {'line': b'-- Found Threads: TRUE \n'} +[0.506463] (-) TimerEvent: {} +[0.525971] (rj_convert) StdoutLine: {'line': b'-- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake)\n'} +[0.566960] (rj_convert) StdoutLine: {'line': b"-- Found gtest sources under '/opt/ros/humble/src/gtest_vendor': C++ tests using 'Google Test' will be built\n"} +[0.573308] (rj_convert) StdoutLine: {'line': b"-- Added test 'copyright' to check source files copyright and LICENSE\n"} +[0.573904] (rj_convert) StdoutLine: {'line': b"-- Added test 'cppcheck' to perform static code analysis on C / C++ code\n"} +[0.574150] (rj_convert) StdoutLine: {'line': b'-- Configured cppcheck include dirs: /root/robocup-software/src/rj_convert/include\n'} +[0.574190] (rj_convert) StdoutLine: {'line': b'-- Configured cppcheck exclude dirs and/or files: \n'} +[0.574357] (rj_convert) StdoutLine: {'line': b"-- Added test 'cpplint' to check C / C++ code against the Google style\n"} +[0.574387] (rj_convert) StdoutLine: {'line': b'-- Configured cpplint exclude dirs and/or files: \n'} +[0.574672] (rj_convert) StdoutLine: {'line': b"-- Added test 'lint_cmake' to check CMake code style\n"} +[0.575141] (rj_convert) StdoutLine: {'line': b"-- Added test 'uncrustify' to check C / C++ code style\n"} +[0.575179] (rj_convert) StdoutLine: {'line': b'-- Configured uncrustify additional arguments: \n'} +[0.575330] (rj_convert) StdoutLine: {'line': b"-- Added test 'xmllint' to check XML markup files\n"} +[0.576085] (rj_convert) StdoutLine: {'line': b'-- Configuring done\n'} +[0.580830] (rj_convert) StderrLine: {'line': b'\x1b[0mCMake Error: INSTALL(EXPORT) given unknown export "rj_convert"\x1b[0m\n'} +[0.582641] (rj_convert) StdoutLine: {'line': b'-- Generating done\n'} +[0.583846] (rj_convert) StderrLine: {'line': b'\x1b[0mCMake Generate step failed. Build files cannot be regenerated correctly.\x1b[0m\n'} +[0.588792] (rj_convert) CommandEnded: {'returncode': 1} +[0.599578] (rj_convert) JobEnded: {'identifier': 'rj_convert', 'rc': 1} +[0.607756] (-) TimerEvent: {} +[0.610013] (-) EventReactorShutdown: {} diff --git a/log/build_2025-01-30_16-29-43/logger_all.log b/log/build_2025-01-30_16-29-43/logger_all.log new file mode 100644 index 00000000000..ddc2930701c --- /dev/null +++ b/log/build_2025-01-30_16-29-43/logger_all.log @@ -0,0 +1,471 @@ +[0.072s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build', '--packages-select', 'rj_convert', '--cmake-clean-cache'] +[0.072s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=10, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=['rj_convert'], packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=True, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) +[0.168s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters +[0.169s] INFO:colcon.colcon_metadata.package_discovery.colcon_meta:Using configuration from '/root/robocup-software/colcon.meta' +[0.169s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters +[0.169s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters +[0.169s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters +[0.169s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover +[0.169s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover +[0.169s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/root/robocup-software' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['ignore', 'ignore_ament_install'] +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'ignore' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'ignore_ament_install' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['colcon_pkg'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'colcon_pkg' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['colcon_meta'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'colcon_meta' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['ros'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'ros' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['cmake', 'python'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'cmake' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'python' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['python_setup_py'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'python_setup_py' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['ignore', 'ignore_ament_install'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'ignore' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'ignore_ament_install' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['colcon_pkg'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'colcon_pkg' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['colcon_meta'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'colcon_meta' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['ros'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'ros' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['cmake', 'python'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'cmake' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'python' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['python_setup_py'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'python_setup_py' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['ignore', 'ignore_ament_install'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'ignore' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'ignore_ament_install' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['colcon_pkg'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'colcon_pkg' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['colcon_meta'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'colcon_meta' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['ros'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'ros' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['cmake', 'python'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'cmake' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'python' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['python_setup_py'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'python_setup_py' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['ignore', 'ignore_ament_install'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'ignore' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'ignore_ament_install' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['colcon_pkg'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'colcon_pkg' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['colcon_meta'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'colcon_meta' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['ros'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'ros' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['cmake', 'python'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'cmake' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'python' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['python_setup_py'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'python_setup_py' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['ignore', 'ignore_ament_install'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'ignore' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'ignore_ament_install' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['colcon_pkg'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'colcon_pkg' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['colcon_meta'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'colcon_meta' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['ros'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'ros' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['cmake', 'python'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'cmake' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'python' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['python_setup_py'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'python_setup_py' +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['ignore', 'ignore_ament_install'] +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'ignore' +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'ignore_ament_install' +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['colcon_pkg'] +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'colcon_pkg' +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['colcon_meta'] +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'colcon_meta' +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['ros'] +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'ros' +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['cmake', 'python'] +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'cmake' +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'python' +[0.179s] DEBUG:colcon.colcon_core.package_identification:Package 'src/docs' with type 'cmake' and name 'rj_robocup_docs' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['ignore', 'ignore_ament_install'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'ignore' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'ignore_ament_install' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['colcon_pkg'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'colcon_pkg' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['colcon_meta'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'colcon_meta' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['ros'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'ros' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['cmake', 'python'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'cmake' +[0.184s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'python' +[0.184s] DEBUG:colcon.colcon_core.package_identification:Package 'src/external' with type 'cmake' and name 'external' +[0.184s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['ignore', 'ignore_ament_install'] +[0.184s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'ignore' +[0.184s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'ignore_ament_install' +[0.184s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['colcon_pkg'] +[0.184s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'colcon_pkg' +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['colcon_meta'] +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'colcon_meta' +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['ros'] +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'ros' +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['cmake', 'python'] +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'cmake' +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'python' +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['python_setup_py'] +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'python_setup_py' +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['ignore', 'ignore_ament_install'] +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'ignore' +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'ignore_ament_install' +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['colcon_pkg'] +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'colcon_pkg' +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['colcon_meta'] +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'colcon_meta' +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['ros'] +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'ros' +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['cmake', 'python'] +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'cmake' +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'python' +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['python_setup_py'] +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'python_setup_py' +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['ignore', 'ignore_ament_install'] +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'ignore' +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'ignore_ament_install' +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['colcon_pkg'] +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'colcon_pkg' +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['colcon_meta'] +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'colcon_meta' +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['ros'] +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'ros' +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['cmake', 'python'] +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'cmake' +[0.185s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'python' +[0.185s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_common' with type 'cmake' and name 'rj_common' +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['ignore', 'ignore_ament_install'] +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'ignore' +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'ignore_ament_install' +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['colcon_pkg'] +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'colcon_pkg' +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['colcon_meta'] +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'colcon_meta' +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['ros'] +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'ros' +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['cmake', 'python'] +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'cmake' +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'python' +[0.186s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_config' with type 'cmake' and name 'rj_config' +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['ignore', 'ignore_ament_install'] +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'ignore' +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'ignore_ament_install' +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['colcon_pkg'] +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'colcon_pkg' +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['colcon_meta'] +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'colcon_meta' +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['ros'] +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'ros' +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['cmake', 'python'] +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'cmake' +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'python' +[0.186s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_constants' with type 'cmake' and name 'rj_constants' +[0.186s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['ignore', 'ignore_ament_install'] +[0.187s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'ignore' +[0.187s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'ignore_ament_install' +[0.187s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['colcon_pkg'] +[0.187s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'colcon_pkg' +[0.187s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['colcon_meta'] +[0.187s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'colcon_meta' +[0.187s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['ros'] +[0.187s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'ros' +[0.188s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_convert' with type 'ros.ament_cmake' and name 'rj_convert' +[0.188s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['ignore', 'ignore_ament_install'] +[0.188s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'ignore' +[0.188s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'ignore_ament_install' +[0.188s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['colcon_pkg'] +[0.188s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'colcon_pkg' +[0.188s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['colcon_meta'] +[0.188s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'colcon_meta' +[0.188s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['ros'] +[0.188s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'ros' +[0.189s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_drawing_msgs' with type 'ros.ament_cmake' and name 'rj_drawing_msgs' +[0.189s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['ignore', 'ignore_ament_install'] +[0.189s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'ignore' +[0.189s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'ignore_ament_install' +[0.189s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['colcon_pkg'] +[0.189s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'colcon_pkg' +[0.189s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['colcon_meta'] +[0.189s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'colcon_meta' +[0.189s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['ros'] +[0.189s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'ros' +[0.189s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['cmake', 'python'] +[0.189s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'cmake' +[0.189s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'python' +[0.189s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_geometry' with type 'cmake' and name 'geometry2d' +[0.189s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['ignore', 'ignore_ament_install'] +[0.189s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'ignore' +[0.189s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'ignore_ament_install' +[0.189s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['colcon_pkg'] +[0.189s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'colcon_pkg' +[0.189s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['colcon_meta'] +[0.189s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'colcon_meta' +[0.189s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['ros'] +[0.189s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'ros' +[0.190s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_geometry_msgs' with type 'ros.ament_cmake' and name 'rj_geometry_msgs' +[0.190s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['ignore', 'ignore_ament_install'] +[0.190s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'ignore' +[0.190s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'ignore_ament_install' +[0.190s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['colcon_pkg'] +[0.190s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'colcon_pkg' +[0.190s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['colcon_meta'] +[0.190s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'colcon_meta' +[0.190s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['ros'] +[0.190s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'ros' +[0.190s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_msgs' with type 'ros.ament_cmake' and name 'rj_msgs' +[0.190s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['ignore', 'ignore_ament_install'] +[0.190s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'ignore' +[0.190s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'ignore_ament_install' +[0.190s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['colcon_pkg'] +[0.190s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'colcon_pkg' +[0.190s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['colcon_meta'] +[0.190s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'colcon_meta' +[0.190s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['ros'] +[0.190s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'ros' +[0.190s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['cmake', 'python'] +[0.190s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'cmake' +[0.191s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'python' +[0.191s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_param_utils' with type 'cmake' and name 'rj_param_utils' +[0.191s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['ignore', 'ignore_ament_install'] +[0.191s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'ignore' +[0.191s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'ignore_ament_install' +[0.191s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['colcon_pkg'] +[0.191s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'colcon_pkg' +[0.191s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['colcon_meta'] +[0.191s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'colcon_meta' +[0.191s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['ros'] +[0.191s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'ros' +[0.191s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['cmake', 'python'] +[0.191s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'cmake' +[0.191s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'python' +[0.191s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_protos' with type 'cmake' and name 'rj_protos' +[0.191s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['ignore', 'ignore_ament_install'] +[0.191s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'ignore' +[0.191s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'ignore_ament_install' +[0.191s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['colcon_pkg'] +[0.191s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'colcon_pkg' +[0.191s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['colcon_meta'] +[0.191s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'colcon_meta' +[0.191s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['ros'] +[0.191s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'ros' +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['cmake', 'python'] +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'cmake' +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'python' +[0.192s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_topic_utils' with type 'cmake' and name 'rj_topic_utils' +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['ignore', 'ignore_ament_install'] +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'ignore' +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'ignore_ament_install' +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['colcon_pkg'] +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'colcon_pkg' +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['colcon_meta'] +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'colcon_meta' +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['ros'] +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'ros' +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['cmake', 'python'] +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'cmake' +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'python' +[0.192s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_utils' with type 'cmake' and name 'rj_utils' +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['ignore', 'ignore_ament_install'] +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'ignore' +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'ignore_ament_install' +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['colcon_pkg'] +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'colcon_pkg' +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['colcon_meta'] +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'colcon_meta' +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['ros'] +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'ros' +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['cmake', 'python'] +[0.192s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'cmake' +[0.193s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'python' +[0.193s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_vision_receiver' with type 'cmake' and name 'rj_vision_receiver' +[0.193s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['ignore', 'ignore_ament_install'] +[0.193s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'ignore' +[0.193s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'ignore_ament_install' +[0.193s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['colcon_pkg'] +[0.193s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'colcon_pkg' +[0.193s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['colcon_meta'] +[0.193s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'colcon_meta' +[0.193s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['ros'] +[0.193s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'ros' +[0.193s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['cmake', 'python'] +[0.193s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'cmake' +[0.194s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'python' +[0.195s] DEBUG:colcon.colcon_core.package_identification:Package 'src/soccer' with type 'cmake' and name 'soccer' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['ignore', 'ignore_ament_install'] +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'ignore' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'ignore_ament_install' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['colcon_pkg'] +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'colcon_pkg' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['colcon_meta'] +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'colcon_meta' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['ros'] +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'ros' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['cmake', 'python'] +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'cmake' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'python' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['python_setup_py'] +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'python_setup_py' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['ignore', 'ignore_ament_install'] +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'ignore' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'ignore_ament_install' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['colcon_pkg'] +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'colcon_pkg' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['colcon_meta'] +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'colcon_meta' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['ros'] +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'ros' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['cmake', 'python'] +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'cmake' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'python' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['python_setup_py'] +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'python_setup_py' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['ignore', 'ignore_ament_install'] +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'ignore' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'ignore_ament_install' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['colcon_pkg'] +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'colcon_pkg' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['colcon_meta'] +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'colcon_meta' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['ros'] +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'ros' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['cmake', 'python'] +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'cmake' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'python' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['python_setup_py'] +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'python_setup_py' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['ignore', 'ignore_ament_install'] +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'ignore' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'ignore_ament_install' +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['colcon_pkg'] +[0.195s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'colcon_pkg' +[0.196s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['colcon_meta'] +[0.196s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'colcon_meta' +[0.196s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['ros'] +[0.196s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'ros' +[0.196s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['cmake', 'python'] +[0.196s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'cmake' +[0.196s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'python' +[0.196s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['python_setup_py'] +[0.196s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'python_setup_py' +[0.196s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults +[0.196s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover +[0.196s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults +[0.196s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover +[0.196s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults +[0.214s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'external' in 'src/external' +[0.214s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_constants' in 'src/rj_constants' +[0.214s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_geometry_msgs' in 'src/rj_geometry_msgs' +[0.214s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_param_utils' in 'src/rj_param_utils' +[0.214s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_protos' in 'src/rj_protos' +[0.214s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_robocup_docs' in 'src/docs' +[0.214s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_topic_utils' in 'src/rj_topic_utils' +[0.214s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'geometry2d' in 'src/rj_geometry' +[0.214s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_drawing_msgs' in 'src/rj_drawing_msgs' +[0.214s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_msgs' in 'src/rj_msgs' +[0.214s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_common' in 'src/rj_common' +[0.214s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_config' in 'src/rj_config' +[0.214s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_utils' in 'src/rj_utils' +[0.214s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_vision_receiver' in 'src/rj_vision_receiver' +[0.214s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'soccer' in 'src/soccer' +[0.214s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters +[0.214s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover +[0.216s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 232 installed packages in /opt/ros/humble +[0.216s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults +[0.235s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_args' from command line to 'None' +[0.235s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_target' from command line to 'None' +[0.235s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_target_skip_unavailable' from command line to 'False' +[0.235s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_clean_cache' from command line to 'True' +[0.235s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_clean_first' from command line to 'False' +[0.235s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_force_configure' from command line to 'False' +[0.235s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'ament_cmake_args' from command line to 'None' +[0.235s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'catkin_cmake_args' from command line to 'None' +[0.235s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'catkin_skip_building_tests' from command line to 'False' +[0.235s] DEBUG:colcon.colcon_core.verb:Building package 'rj_convert' with the following arguments: {'ament_cmake_args': None, 'build_base': '/root/robocup-software/build/rj_convert', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': True, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/root/robocup-software/install/rj_convert', 'merge_install': False, 'path': '/root/robocup-software/src/rj_convert', 'symlink_install': False, 'test_result_base': None} +[0.235s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor +[0.236s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete +[0.236s] INFO:colcon.colcon_ros.task.ament_cmake.build:Building ROS package in '/root/robocup-software/src/rj_convert' with build type 'ament_cmake' +[0.236s] INFO:colcon.colcon_cmake.task.cmake.build:Building CMake package in '/root/robocup-software/src/rj_convert' +[0.237s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems +[0.237s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell +[0.237s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment +[0.241s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +[0.825s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/root/robocup-software/build/rj_convert' returned '1': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +[0.831s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(rj_convert) +[0.832s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert' for CMake module files +[0.833s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert' for CMake config files +[0.833s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/bin' +[0.833s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/lib/pkgconfig/rj_convert.pc' +[0.833s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/lib/python3.10/site-packages' +[0.833s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/bin' +[0.833s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.ps1' +[0.834s] INFO:colcon.colcon_core.shell:Creating package descriptor '/root/robocup-software/install/rj_convert/share/rj_convert/package.dsv' +[0.834s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.sh' +[0.834s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.bash' +[0.835s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.zsh' +[0.835s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/root/robocup-software/install/rj_convert/share/colcon-core/packages/rj_convert) +[0.846s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop +[0.846s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed +[0.846s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '1' +[0.846s] DEBUG:colcon.colcon_core.event_reactor:joining thread +[0.849s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems +[0.849s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems +[0.849s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' +[0.856s] DEBUG:colcon.colcon_core.event_reactor:joined thread +[0.857s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.ps1' +[0.858s] INFO:colcon.colcon_core.shell:Creating prefix util module '/root/robocup-software/install/_local_setup_util_ps1.py' +[0.859s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.ps1' +[0.859s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.sh' +[0.860s] INFO:colcon.colcon_core.shell:Creating prefix util module '/root/robocup-software/install/_local_setup_util_sh.py' +[0.860s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.sh' +[0.860s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.bash' +[0.861s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.bash' +[0.861s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.zsh' +[0.861s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.zsh' diff --git a/log/build_2025-01-30_16-29-43/rj_convert/command.log b/log/build_2025-01-30_16-29-43/rj_convert/command.log new file mode 100644 index 00000000000..f2dc63e0b95 --- /dev/null +++ b/log/build_2025-01-30_16-29-43/rj_convert/command.log @@ -0,0 +1,2 @@ +Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +Invoked command in '/root/robocup-software/build/rj_convert' returned '1': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert diff --git a/log/build_2025-01-30_16-29-43/rj_convert/stderr.log b/log/build_2025-01-30_16-29-43/rj_convert/stderr.log new file mode 100644 index 00000000000..b77c28ae7cc --- /dev/null +++ b/log/build_2025-01-30_16-29-43/rj_convert/stderr.log @@ -0,0 +1,2 @@ +CMake Error: INSTALL(EXPORT) given unknown export "rj_convert" +CMake Generate step failed. Build files cannot be regenerated correctly. diff --git a/log/build_2025-01-30_16-29-43/rj_convert/stdout.log b/log/build_2025-01-30_16-29-43/rj_convert/stdout.log new file mode 100644 index 00000000000..f31a495b254 --- /dev/null +++ b/log/build_2025-01-30_16-29-43/rj_convert/stdout.log @@ -0,0 +1,44 @@ +-- The C compiler identification is GNU 11.4.0 +-- The CXX compiler identification is GNU 11.4.0 +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Check for working C compiler: /usr/bin/cc - skipped +-- Detecting C compile features +-- Detecting C compile features - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Check for working CXX compiler: /usr/bin/c++ - skipped +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake) +-- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter +-- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake) +-- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake) +-- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake) +-- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake) +-- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c +-- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp +-- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake) +-- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake) +-- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") +-- Found FastRTPS: /opt/ros/humble/include +-- Using RMW implementation 'rmw_fastrtps_cpp' as default +-- Looking for pthread.h +-- Looking for pthread.h - found +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +-- Found Threads: TRUE +-- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake) +-- Found gtest sources under '/opt/ros/humble/src/gtest_vendor': C++ tests using 'Google Test' will be built +-- Added test 'copyright' to check source files copyright and LICENSE +-- Added test 'cppcheck' to perform static code analysis on C / C++ code +-- Configured cppcheck include dirs: /root/robocup-software/src/rj_convert/include +-- Configured cppcheck exclude dirs and/or files: +-- Added test 'cpplint' to check C / C++ code against the Google style +-- Configured cpplint exclude dirs and/or files: +-- Added test 'lint_cmake' to check CMake code style +-- Added test 'uncrustify' to check C / C++ code style +-- Configured uncrustify additional arguments: +-- Added test 'xmllint' to check XML markup files +-- Configuring done +-- Generating done diff --git a/log/build_2025-01-30_16-29-43/rj_convert/stdout_stderr.log b/log/build_2025-01-30_16-29-43/rj_convert/stdout_stderr.log new file mode 100644 index 00000000000..fc94df256a7 --- /dev/null +++ b/log/build_2025-01-30_16-29-43/rj_convert/stdout_stderr.log @@ -0,0 +1,46 @@ +-- The C compiler identification is GNU 11.4.0 +-- The CXX compiler identification is GNU 11.4.0 +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Check for working C compiler: /usr/bin/cc - skipped +-- Detecting C compile features +-- Detecting C compile features - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Check for working CXX compiler: /usr/bin/c++ - skipped +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake) +-- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter +-- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake) +-- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake) +-- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake) +-- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake) +-- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c +-- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp +-- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake) +-- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake) +-- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") +-- Found FastRTPS: /opt/ros/humble/include +-- Using RMW implementation 'rmw_fastrtps_cpp' as default +-- Looking for pthread.h +-- Looking for pthread.h - found +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +-- Found Threads: TRUE +-- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake) +-- Found gtest sources under '/opt/ros/humble/src/gtest_vendor': C++ tests using 'Google Test' will be built +-- Added test 'copyright' to check source files copyright and LICENSE +-- Added test 'cppcheck' to perform static code analysis on C / C++ code +-- Configured cppcheck include dirs: /root/robocup-software/src/rj_convert/include +-- Configured cppcheck exclude dirs and/or files: +-- Added test 'cpplint' to check C / C++ code against the Google style +-- Configured cpplint exclude dirs and/or files: +-- Added test 'lint_cmake' to check CMake code style +-- Added test 'uncrustify' to check C / C++ code style +-- Configured uncrustify additional arguments: +-- Added test 'xmllint' to check XML markup files +-- Configuring done +CMake Error: INSTALL(EXPORT) given unknown export "rj_convert" +-- Generating done +CMake Generate step failed. Build files cannot be regenerated correctly. diff --git a/log/build_2025-01-30_16-29-43/rj_convert/streams.log b/log/build_2025-01-30_16-29-43/rj_convert/streams.log new file mode 100644 index 00000000000..8f1956ea41f --- /dev/null +++ b/log/build_2025-01-30_16-29-43/rj_convert/streams.log @@ -0,0 +1,48 @@ +[0.004s] Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +[0.041s] -- The C compiler identification is GNU 11.4.0 +[0.071s] -- The CXX compiler identification is GNU 11.4.0 +[0.075s] -- Detecting C compiler ABI info +[0.111s] -- Detecting C compiler ABI info - done +[0.115s] -- Check for working C compiler: /usr/bin/cc - skipped +[0.116s] -- Detecting C compile features +[0.116s] -- Detecting C compile features - done +[0.118s] -- Detecting CXX compiler ABI info +[0.157s] -- Detecting CXX compiler ABI info - done +[0.162s] -- Check for working CXX compiler: /usr/bin/c++ - skipped +[0.162s] -- Detecting CXX compile features +[0.163s] -- Detecting CXX compile features - done +[0.164s] -- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake) +[0.236s] -- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter +[0.273s] -- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake) +[0.294s] -- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake) +[0.297s] -- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake) +[0.301s] -- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake) +[0.307s] -- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c +[0.316s] -- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp +[0.340s] -- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake) +[0.341s] -- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake) +[0.380s] -- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") +[0.391s] -- Found FastRTPS: /opt/ros/humble/include +[0.410s] -- Using RMW implementation 'rmw_fastrtps_cpp' as default +[0.415s] -- Looking for pthread.h +[0.453s] -- Looking for pthread.h - found +[0.453s] -- Performing Test CMAKE_HAVE_LIBC_PTHREAD +[0.489s] -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +[0.490s] -- Found Threads: TRUE +[0.525s] -- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake) +[0.566s] -- Found gtest sources under '/opt/ros/humble/src/gtest_vendor': C++ tests using 'Google Test' will be built +[0.572s] -- Added test 'copyright' to check source files copyright and LICENSE +[0.573s] -- Added test 'cppcheck' to perform static code analysis on C / C++ code +[0.573s] -- Configured cppcheck include dirs: /root/robocup-software/src/rj_convert/include +[0.573s] -- Configured cppcheck exclude dirs and/or files: +[0.573s] -- Added test 'cpplint' to check C / C++ code against the Google style +[0.573s] -- Configured cpplint exclude dirs and/or files: +[0.574s] -- Added test 'lint_cmake' to check CMake code style +[0.574s] -- Added test 'uncrustify' to check C / C++ code style +[0.574s] -- Configured uncrustify additional arguments: +[0.574s] -- Added test 'xmllint' to check XML markup files +[0.575s] -- Configuring done +[0.580s] CMake Error: INSTALL(EXPORT) given unknown export "rj_convert" +[0.582s] -- Generating done +[0.583s] CMake Generate step failed. Build files cannot be regenerated correctly. +[0.588s] Invoked command in '/root/robocup-software/build/rj_convert' returned '1': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert diff --git a/log/build_2025-01-30_16-30-19/events.log b/log/build_2025-01-30_16-30-19/events.log new file mode 100644 index 00000000000..a0b5f5a6db8 --- /dev/null +++ b/log/build_2025-01-30_16-30-19/events.log @@ -0,0 +1,112 @@ +[0.000000] (-) TimerEvent: {} +[0.001170] (-) JobUnselected: {'identifier': 'external'} +[0.001533] (-) JobUnselected: {'identifier': 'geometry2d'} +[0.001848] (-) JobUnselected: {'identifier': 'rj_common'} +[0.008962] (-) JobUnselected: {'identifier': 'rj_config'} +[0.009012] (-) JobUnselected: {'identifier': 'rj_constants'} +[0.009142] (-) JobUnselected: {'identifier': 'rj_drawing_msgs'} +[0.009888] (-) JobUnselected: {'identifier': 'rj_geometry_msgs'} +[0.010377] (-) JobUnselected: {'identifier': 'rj_msgs'} +[0.011465] (-) JobUnselected: {'identifier': 'rj_param_utils'} +[0.011514] (-) JobUnselected: {'identifier': 'rj_protos'} +[0.011677] (-) JobUnselected: {'identifier': 'rj_robocup_docs'} +[0.012321] (-) JobUnselected: {'identifier': 'rj_topic_utils'} +[0.012816] (-) JobUnselected: {'identifier': 'rj_utils'} +[0.012847] (-) JobUnselected: {'identifier': 'rj_vision_receiver'} +[0.012862] (-) JobUnselected: {'identifier': 'soccer'} +[0.012974] (rj_convert) JobQueued: {'identifier': 'rj_convert', 'dependencies': OrderedDict()} +[0.013092] (rj_convert) JobStarted: {'identifier': 'rj_convert'} +[0.019832] (rj_convert) JobProgress: {'identifier': 'rj_convert', 'progress': 'cmake'} +[0.019890] (rj_convert) Command: {'cmd': ['/usr/bin/cmake', '/root/robocup-software/src/rj_convert', '-DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert'], 'cwd': '/root/robocup-software/build/rj_convert', 'env': OrderedDict([('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'root'), ('HOSTNAME', '883453f99e27'), ('GIT_ASKPASS', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/extensions/git/dist/askpass.sh'), ('SHLVL', '2'), ('LD_LIBRARY_PATH', '/opt/ros/humble/lib/aarch64-linux-gnu:/opt/ros/humble/lib'), ('BROWSER', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/bin/helpers/browser.sh'), ('HOME', '/root'), ('TERM_PROGRAM_VERSION', '1.96.4'), ('VSCODE_IPC_HOOK_CLI', '/tmp/vscode-ipc-0f19b725-94e1-4be6-974b-9e834c3e0ec8.sock'), ('ROS_PYTHON_VERSION', '3'), ('VSCODE_GIT_ASKPASS_MAIN', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/extensions/git/dist/askpass-main.js'), ('VSCODE_GIT_ASKPASS_NODE', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/node'), ('COLORTERM', 'truecolor'), ('REMOTE_CONTAINERS', 'true'), ('ROS_DISTRO', 'humble'), ('REMOTE_CONTAINERS_IPC', '/tmp/vscode-remote-containers-ipc-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('TERM', 'xterm-256color'), ('COLCON_MIXIN_PATH', '/root/robocup-software/mixin'), ('ROS_LOCALHOST_ONLY', '0'), ('PATH', '/opt/ros/humble/bin:/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/bin/remote-cli:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.vscode-server/data/User/globalStorage/github.copilot-chat/debugCommand'), ('REMOTE_CONTAINERS_SOCKETS', '["/tmp/vscode-ssh-auth-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock"]'), ('DISPLAY', ':1'), ('LANG', 'en_US.UTF-8'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/tmp/vscode-git-d1d340e128.sock'), ('TERM_PROGRAM', 'vscode'), ('SSH_AUTH_SOCK', '/tmp/vscode-ssh-auth-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock'), ('AMENT_PREFIX_PATH', '/opt/ros/humble'), ('DEBIAN_FRONTEND', 'noninteractive'), ('SHELL', '/bin/bash'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('PWD', '/root/robocup-software/build/rj_convert'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('TZ', 'America/New_York'), ('COLCON', '1'), ('CMAKE_PREFIX_PATH', '/opt/ros/humble')]), 'shell': False} +[0.058572] (rj_convert) StdoutLine: {'line': b'-- The C compiler identification is GNU 11.4.0\n'} +[0.101486] (-) TimerEvent: {} +[0.107447] (rj_convert) StdoutLine: {'line': b'-- The CXX compiler identification is GNU 11.4.0\n'} +[0.112077] (rj_convert) StdoutLine: {'line': b'-- Detecting C compiler ABI info\n'} +[0.150699] (rj_convert) StdoutLine: {'line': b'-- Detecting C compiler ABI info - done\n'} +[0.155956] (rj_convert) StdoutLine: {'line': b'-- Check for working C compiler: /usr/bin/cc - skipped\n'} +[0.156178] (rj_convert) StdoutLine: {'line': b'-- Detecting C compile features\n'} +[0.156569] (rj_convert) StdoutLine: {'line': b'-- Detecting C compile features - done\n'} +[0.159183] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compiler ABI info\n'} +[0.199485] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compiler ABI info - done\n'} +[0.201610] (-) TimerEvent: {} +[0.205056] (rj_convert) StdoutLine: {'line': b'-- Check for working CXX compiler: /usr/bin/c++ - skipped\n'} +[0.205261] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compile features\n'} +[0.205540] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compile features - done\n'} +[0.207047] (rj_convert) StdoutLine: {'line': b'-- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake)\n'} +[0.289644] (rj_convert) StdoutLine: {'line': b'-- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter \n'} +[0.302856] (-) TimerEvent: {} +[0.334351] (rj_convert) StdoutLine: {'line': b'-- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake)\n'} +[0.357343] (rj_convert) StdoutLine: {'line': b'-- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake)\n'} +[0.359534] (rj_convert) StdoutLine: {'line': b'-- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake)\n'} +[0.364674] (rj_convert) StdoutLine: {'line': b'-- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake)\n'} +[0.371526] (rj_convert) StdoutLine: {'line': b'-- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c\n'} +[0.380428] (rj_convert) StdoutLine: {'line': b'-- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp\n'} +[0.403912] (-) TimerEvent: {} +[0.406622] (rj_convert) StdoutLine: {'line': b'-- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake)\n'} +[0.407869] (rj_convert) StdoutLine: {'line': b'-- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake)\n'} +[0.452628] (rj_convert) StdoutLine: {'line': b'-- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") \n'} +[0.469391] (rj_convert) StdoutLine: {'line': b'-- Found FastRTPS: /opt/ros/humble/include \n'} +[0.491470] (rj_convert) StdoutLine: {'line': b"-- Using RMW implementation 'rmw_fastrtps_cpp' as default\n"} +[0.496408] (rj_convert) StdoutLine: {'line': b'-- Looking for pthread.h\n'} +[0.504402] (-) TimerEvent: {} +[0.536384] (rj_convert) StdoutLine: {'line': b'-- Looking for pthread.h - found\n'} +[0.536704] (rj_convert) StdoutLine: {'line': b'-- Performing Test CMAKE_HAVE_LIBC_PTHREAD\n'} +[0.578855] (rj_convert) StdoutLine: {'line': b'-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success\n'} +[0.578987] (rj_convert) StdoutLine: {'line': b'-- Found Threads: TRUE \n'} +[0.608721] (-) TimerEvent: {} +[0.616426] (rj_convert) StdoutLine: {'line': b'-- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake)\n'} +[0.660408] (rj_convert) StdoutLine: {'line': b"-- Found gtest sources under '/opt/ros/humble/src/gtest_vendor': C++ tests using 'Google Test' will be built\n"} +[0.666568] (rj_convert) StdoutLine: {'line': b"-- Added test 'copyright' to check source files copyright and LICENSE\n"} +[0.667110] (rj_convert) StdoutLine: {'line': b"-- Added test 'cppcheck' to perform static code analysis on C / C++ code\n"} +[0.667248] (rj_convert) StdoutLine: {'line': b'-- Configured cppcheck include dirs: /root/robocup-software/src/rj_convert/include\n'} +[0.667319] (rj_convert) StdoutLine: {'line': b'-- Configured cppcheck exclude dirs and/or files: \n'} +[0.667655] (rj_convert) StdoutLine: {'line': b"-- Added test 'cpplint' to check C / C++ code against the Google style\n"} +[0.667693] (rj_convert) StdoutLine: {'line': b'-- Configured cpplint exclude dirs and/or files: \n'} +[0.667978] (rj_convert) StdoutLine: {'line': b"-- Added test 'lint_cmake' to check CMake code style\n"} +[0.668446] (rj_convert) StdoutLine: {'line': b"-- Added test 'uncrustify' to check C / C++ code style\n"} +[0.668488] (rj_convert) StdoutLine: {'line': b'-- Configured uncrustify additional arguments: \n'} +[0.668690] (rj_convert) StdoutLine: {'line': b"-- Added test 'xmllint' to check XML markup files\n"} +[0.669440] (rj_convert) StdoutLine: {'line': b'-- Configuring done\n'} +[0.702160] (rj_convert) StdoutLine: {'line': b'-- Generating done\n'} +[0.708977] (-) TimerEvent: {} +[0.709173] (rj_convert) StdoutLine: {'line': b'-- Build files have been written to: /root/robocup-software/build/rj_convert\n'} +[0.718127] (rj_convert) CommandEnded: {'returncode': 0} +[0.718481] (rj_convert) JobProgress: {'identifier': 'rj_convert', 'progress': 'build'} +[0.718498] (rj_convert) Command: {'cmd': ['/usr/bin/cmake', '--build', '/root/robocup-software/build/rj_convert', '--', '-j10', '-l10'], 'cwd': '/root/robocup-software/build/rj_convert', 'env': OrderedDict([('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'root'), ('HOSTNAME', '883453f99e27'), ('GIT_ASKPASS', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/extensions/git/dist/askpass.sh'), ('SHLVL', '2'), ('LD_LIBRARY_PATH', '/opt/ros/humble/lib/aarch64-linux-gnu:/opt/ros/humble/lib'), ('BROWSER', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/bin/helpers/browser.sh'), ('HOME', '/root'), ('TERM_PROGRAM_VERSION', '1.96.4'), ('VSCODE_IPC_HOOK_CLI', '/tmp/vscode-ipc-0f19b725-94e1-4be6-974b-9e834c3e0ec8.sock'), ('ROS_PYTHON_VERSION', '3'), ('VSCODE_GIT_ASKPASS_MAIN', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/extensions/git/dist/askpass-main.js'), ('VSCODE_GIT_ASKPASS_NODE', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/node'), ('COLORTERM', 'truecolor'), ('REMOTE_CONTAINERS', 'true'), ('ROS_DISTRO', 'humble'), ('REMOTE_CONTAINERS_IPC', '/tmp/vscode-remote-containers-ipc-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('TERM', 'xterm-256color'), ('COLCON_MIXIN_PATH', '/root/robocup-software/mixin'), ('ROS_LOCALHOST_ONLY', '0'), ('PATH', '/opt/ros/humble/bin:/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/bin/remote-cli:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.vscode-server/data/User/globalStorage/github.copilot-chat/debugCommand'), ('REMOTE_CONTAINERS_SOCKETS', '["/tmp/vscode-ssh-auth-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock"]'), ('DISPLAY', ':1'), ('LANG', 'en_US.UTF-8'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/tmp/vscode-git-d1d340e128.sock'), ('TERM_PROGRAM', 'vscode'), ('SSH_AUTH_SOCK', '/tmp/vscode-ssh-auth-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock'), ('AMENT_PREFIX_PATH', '/opt/ros/humble'), ('DEBIAN_FRONTEND', 'noninteractive'), ('SHELL', '/bin/bash'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('PWD', '/root/robocup-software/build/rj_convert'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('TZ', 'America/New_York'), ('COLCON', '1'), ('CMAKE_PREFIX_PATH', '/opt/ros/humble')]), 'shell': False} +[0.743191] (rj_convert) StdoutLine: {'line': b'[ 16%] \x1b[32mBuilding CXX object gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o\x1b[0m\n'} +[0.743372] (rj_convert) StdoutLine: {'line': b'[ 33%] \x1b[32mBuilding CXX object gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o\x1b[0m\n'} +[0.809192] (-) TimerEvent: {} +[0.909697] (-) TimerEvent: {} +[1.010351] (-) TimerEvent: {} +[1.110664] (-) TimerEvent: {} +[1.211353] (-) TimerEvent: {} +[1.311645] (-) TimerEvent: {} +[1.348000] (rj_convert) StdoutLine: {'line': b'[ 50%] \x1b[32m\x1b[1mLinking CXX static library libgtest_main.a\x1b[0m\n'} +[1.416782] (-) TimerEvent: {} +[1.519634] (-) TimerEvent: {} +[1.624976] (-) TimerEvent: {} +[1.730283] (-) TimerEvent: {} +[1.831057] (-) TimerEvent: {} +[1.831224] (rj_convert) StdoutLine: {'line': b'[ 50%] Built target gtest_main\n'} +[1.934079] (-) TimerEvent: {} +[2.037936] (-) TimerEvent: {} +[2.139827] (-) TimerEvent: {} +[2.245059] (-) TimerEvent: {} +[2.345870] (-) TimerEvent: {} +[2.451097] (-) TimerEvent: {} +[2.556442] (-) TimerEvent: {} +[2.603661] (rj_convert) StdoutLine: {'line': b'[ 66%] \x1b[32m\x1b[1mLinking CXX static library libgtest.a\x1b[0m\n'} +[2.653495] (rj_convert) StdoutLine: {'line': b'[ 66%] Built target gtest\n'} +[2.657190] (-) TimerEvent: {} +[2.661346] (rj_convert) StdoutLine: {'line': b'[ 83%] \x1b[32mBuilding CXX object CMakeFiles/test_rj_convert.dir/test/ros_convert_test.cpp.o\x1b[0m\n'} +[2.748539] (rj_convert) StderrLine: {'line': b'\x1b[01m\x1b[K/root/robocup-software/src/rj_convert/test/ros_convert_test.cpp:5:10:\x1b[m\x1b[K \x1b[01;31m\x1b[Kfatal error: \x1b[m\x1b[Krj_convert/testing/ros_convert_testing.hpp: No such file or directory\n'} +[2.748708] (rj_convert) StderrLine: {'line': b' 5 | #include \x1b[01;31m\x1b[K\x1b[m\x1b[K\n'} +[2.748767] (rj_convert) StderrLine: {'line': b' | \x1b[01;31m\x1b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\x1b[m\x1b[K\n'} +[2.748803] (rj_convert) StderrLine: {'line': b'compilation terminated.\n'} +[2.749258] (rj_convert) StderrLine: {'line': b'gmake[2]: *** [CMakeFiles/test_rj_convert.dir/build.make:76: CMakeFiles/test_rj_convert.dir/test/ros_convert_test.cpp.o] Error 1\n'} +[2.749376] (rj_convert) StderrLine: {'line': b'gmake[1]: *** [CMakeFiles/Makefile2:156: CMakeFiles/test_rj_convert.dir/all] Error 2\n'} +[2.749602] (rj_convert) StderrLine: {'line': b'gmake: *** [Makefile:146: all] Error 2\n'} +[2.752751] (rj_convert) CommandEnded: {'returncode': 2} +[2.758054] (-) TimerEvent: {} +[2.758823] (rj_convert) JobEnded: {'identifier': 'rj_convert', 'rc': 2} +[2.771665] (-) EventReactorShutdown: {} diff --git a/log/build_2025-01-30_16-30-19/logger_all.log b/log/build_2025-01-30_16-30-19/logger_all.log new file mode 100644 index 00000000000..067d5ca9f01 --- /dev/null +++ b/log/build_2025-01-30_16-30-19/logger_all.log @@ -0,0 +1,473 @@ +[0.068s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build', '--packages-select', 'rj_convert', '--cmake-clean-cache'] +[0.068s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=10, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=['rj_convert'], packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=True, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) +[0.154s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters +[0.154s] INFO:colcon.colcon_metadata.package_discovery.colcon_meta:Using configuration from '/root/robocup-software/colcon.meta' +[0.154s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters +[0.154s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters +[0.154s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters +[0.154s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover +[0.154s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover +[0.154s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/root/robocup-software' +[0.155s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] +[0.155s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' +[0.155s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' +[0.155s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] +[0.155s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' +[0.155s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] +[0.155s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' +[0.155s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] +[0.155s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['ignore', 'ignore_ament_install'] +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'ignore' +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'ignore_ament_install' +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['colcon_pkg'] +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'colcon_pkg' +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['colcon_meta'] +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'colcon_meta' +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['ros'] +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'ros' +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['cmake', 'python'] +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'cmake' +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'python' +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['python_setup_py'] +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'python_setup_py' +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' +[0.162s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['ignore', 'ignore_ament_install'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'ignore' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'ignore_ament_install' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['colcon_pkg'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'colcon_pkg' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['colcon_meta'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'colcon_meta' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['ros'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'ros' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['cmake', 'python'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'cmake' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'python' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['python_setup_py'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'python_setup_py' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['ignore', 'ignore_ament_install'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'ignore' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'ignore_ament_install' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['colcon_pkg'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'colcon_pkg' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['colcon_meta'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'colcon_meta' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['ros'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'ros' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['cmake', 'python'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'cmake' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'python' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['python_setup_py'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'python_setup_py' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['ignore', 'ignore_ament_install'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'ignore' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'ignore_ament_install' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['colcon_pkg'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'colcon_pkg' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['colcon_meta'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'colcon_meta' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['ros'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'ros' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['cmake', 'python'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'cmake' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'python' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['python_setup_py'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'python_setup_py' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['ignore', 'ignore_ament_install'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'ignore' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'ignore_ament_install' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['colcon_pkg'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'colcon_pkg' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['colcon_meta'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'colcon_meta' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['ros'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'ros' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['cmake', 'python'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'cmake' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'python' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['python_setup_py'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'python_setup_py' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['ignore', 'ignore_ament_install'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'ignore' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'ignore_ament_install' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['colcon_pkg'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'colcon_pkg' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['colcon_meta'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'colcon_meta' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['ros'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'ros' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['cmake', 'python'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'cmake' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'python' +[0.165s] DEBUG:colcon.colcon_core.package_identification:Package 'src/docs' with type 'cmake' and name 'rj_robocup_docs' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['ignore', 'ignore_ament_install'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'ignore' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'ignore_ament_install' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['colcon_pkg'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'colcon_pkg' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['colcon_meta'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'colcon_meta' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['ros'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'ros' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['cmake', 'python'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'cmake' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'python' +[0.170s] DEBUG:colcon.colcon_core.package_identification:Package 'src/external' with type 'cmake' and name 'external' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['ignore', 'ignore_ament_install'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'ignore' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'ignore_ament_install' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['colcon_pkg'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'colcon_pkg' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['colcon_meta'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'colcon_meta' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['ros'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'ros' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['cmake', 'python'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'cmake' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'python' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['python_setup_py'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'python_setup_py' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['ignore', 'ignore_ament_install'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'ignore' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'ignore_ament_install' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['colcon_pkg'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'colcon_pkg' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['colcon_meta'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'colcon_meta' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['ros'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'ros' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['cmake', 'python'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'cmake' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'python' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['python_setup_py'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'python_setup_py' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['ignore', 'ignore_ament_install'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'ignore' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'ignore_ament_install' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['colcon_pkg'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'colcon_pkg' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['colcon_meta'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'colcon_meta' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['ros'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'ros' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['cmake', 'python'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'cmake' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'python' +[0.171s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_common' with type 'cmake' and name 'rj_common' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['ignore', 'ignore_ament_install'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'ignore' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'ignore_ament_install' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['colcon_pkg'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'colcon_pkg' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['colcon_meta'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'colcon_meta' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['ros'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'ros' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['cmake', 'python'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'cmake' +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'python' +[0.172s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_config' with type 'cmake' and name 'rj_config' +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['ignore', 'ignore_ament_install'] +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'ignore' +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'ignore_ament_install' +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['colcon_pkg'] +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'colcon_pkg' +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['colcon_meta'] +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'colcon_meta' +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['ros'] +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'ros' +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['cmake', 'python'] +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'cmake' +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'python' +[0.172s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_constants' with type 'cmake' and name 'rj_constants' +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['ignore', 'ignore_ament_install'] +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'ignore' +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'ignore_ament_install' +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['colcon_pkg'] +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'colcon_pkg' +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['colcon_meta'] +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'colcon_meta' +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['ros'] +[0.172s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'ros' +[0.174s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_convert' with type 'ros.ament_cmake' and name 'rj_convert' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['ignore', 'ignore_ament_install'] +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'ignore' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'ignore_ament_install' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['colcon_pkg'] +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'colcon_pkg' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['colcon_meta'] +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'colcon_meta' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['ros'] +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'ros' +[0.174s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_drawing_msgs' with type 'ros.ament_cmake' and name 'rj_drawing_msgs' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['ignore', 'ignore_ament_install'] +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'ignore' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'ignore_ament_install' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['colcon_pkg'] +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'colcon_pkg' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['colcon_meta'] +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'colcon_meta' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['ros'] +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'ros' +[0.175s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['cmake', 'python'] +[0.175s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'cmake' +[0.175s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'python' +[0.175s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_geometry' with type 'cmake' and name 'geometry2d' +[0.175s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['ignore', 'ignore_ament_install'] +[0.175s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'ignore' +[0.175s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'ignore_ament_install' +[0.175s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['colcon_pkg'] +[0.175s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'colcon_pkg' +[0.175s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['colcon_meta'] +[0.175s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'colcon_meta' +[0.175s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['ros'] +[0.175s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'ros' +[0.175s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_geometry_msgs' with type 'ros.ament_cmake' and name 'rj_geometry_msgs' +[0.175s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['ignore', 'ignore_ament_install'] +[0.175s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'ignore' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'ignore_ament_install' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['colcon_pkg'] +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'colcon_pkg' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['colcon_meta'] +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'colcon_meta' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['ros'] +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'ros' +[0.176s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_msgs' with type 'ros.ament_cmake' and name 'rj_msgs' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['ignore', 'ignore_ament_install'] +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'ignore' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'ignore_ament_install' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['colcon_pkg'] +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'colcon_pkg' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['colcon_meta'] +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'colcon_meta' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['ros'] +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'ros' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['cmake', 'python'] +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'cmake' +[0.176s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'python' +[0.177s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_param_utils' with type 'cmake' and name 'rj_param_utils' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['ignore', 'ignore_ament_install'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'ignore' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'ignore_ament_install' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['colcon_pkg'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'colcon_pkg' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['colcon_meta'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'colcon_meta' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['ros'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'ros' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['cmake', 'python'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'cmake' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'python' +[0.177s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_protos' with type 'cmake' and name 'rj_protos' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['ignore', 'ignore_ament_install'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'ignore' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'ignore_ament_install' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['colcon_pkg'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'colcon_pkg' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['colcon_meta'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'colcon_meta' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['ros'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'ros' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['cmake', 'python'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'cmake' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'python' +[0.177s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_topic_utils' with type 'cmake' and name 'rj_topic_utils' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['ignore', 'ignore_ament_install'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'ignore' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'ignore_ament_install' +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['colcon_pkg'] +[0.177s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'colcon_pkg' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['colcon_meta'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'colcon_meta' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['ros'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'ros' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['cmake', 'python'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'cmake' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'python' +[0.178s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_utils' with type 'cmake' and name 'rj_utils' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['ignore', 'ignore_ament_install'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'ignore' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'ignore_ament_install' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['colcon_pkg'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'colcon_pkg' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['colcon_meta'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'colcon_meta' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['ros'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'ros' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['cmake', 'python'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'cmake' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'python' +[0.178s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_vision_receiver' with type 'cmake' and name 'rj_vision_receiver' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['ignore', 'ignore_ament_install'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'ignore' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'ignore_ament_install' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['colcon_pkg'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'colcon_pkg' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['colcon_meta'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'colcon_meta' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['ros'] +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'ros' +[0.178s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['cmake', 'python'] +[0.179s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'cmake' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'python' +[0.180s] DEBUG:colcon.colcon_core.package_identification:Package 'src/soccer' with type 'cmake' and name 'soccer' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['ignore', 'ignore_ament_install'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'ignore' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'ignore_ament_install' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['colcon_pkg'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'colcon_pkg' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['colcon_meta'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'colcon_meta' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['ros'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'ros' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['cmake', 'python'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'cmake' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'python' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['python_setup_py'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'python_setup_py' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['ignore', 'ignore_ament_install'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'ignore' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'ignore_ament_install' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['colcon_pkg'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'colcon_pkg' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['colcon_meta'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'colcon_meta' +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['ros'] +[0.180s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'ros' +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['cmake', 'python'] +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'cmake' +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'python' +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['python_setup_py'] +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'python_setup_py' +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['ignore', 'ignore_ament_install'] +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'ignore' +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'ignore_ament_install' +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['colcon_pkg'] +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'colcon_pkg' +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['colcon_meta'] +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'colcon_meta' +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['ros'] +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'ros' +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['cmake', 'python'] +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'cmake' +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'python' +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['python_setup_py'] +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'python_setup_py' +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['ignore', 'ignore_ament_install'] +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'ignore' +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'ignore_ament_install' +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['colcon_pkg'] +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'colcon_pkg' +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['colcon_meta'] +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'colcon_meta' +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['ros'] +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'ros' +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['cmake', 'python'] +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'cmake' +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'python' +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['python_setup_py'] +[0.181s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'python_setup_py' +[0.181s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults +[0.181s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover +[0.181s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults +[0.181s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover +[0.181s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'external' in 'src/external' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_constants' in 'src/rj_constants' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_geometry_msgs' in 'src/rj_geometry_msgs' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_param_utils' in 'src/rj_param_utils' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_protos' in 'src/rj_protos' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_robocup_docs' in 'src/docs' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_topic_utils' in 'src/rj_topic_utils' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'geometry2d' in 'src/rj_geometry' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_drawing_msgs' in 'src/rj_drawing_msgs' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_msgs' in 'src/rj_msgs' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_common' in 'src/rj_common' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_config' in 'src/rj_config' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_utils' in 'src/rj_utils' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_vision_receiver' in 'src/rj_vision_receiver' +[0.200s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'soccer' in 'src/soccer' +[0.200s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters +[0.200s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover +[0.202s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 232 installed packages in /opt/ros/humble +[0.202s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults +[0.227s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_args' from command line to 'None' +[0.227s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_target' from command line to 'None' +[0.227s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_target_skip_unavailable' from command line to 'False' +[0.227s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_clean_cache' from command line to 'True' +[0.227s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_clean_first' from command line to 'False' +[0.227s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_force_configure' from command line to 'False' +[0.227s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'ament_cmake_args' from command line to 'None' +[0.227s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'catkin_cmake_args' from command line to 'None' +[0.227s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'catkin_skip_building_tests' from command line to 'False' +[0.227s] DEBUG:colcon.colcon_core.verb:Building package 'rj_convert' with the following arguments: {'ament_cmake_args': None, 'build_base': '/root/robocup-software/build/rj_convert', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': True, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/root/robocup-software/install/rj_convert', 'merge_install': False, 'path': '/root/robocup-software/src/rj_convert', 'symlink_install': False, 'test_result_base': None} +[0.227s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor +[0.232s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete +[0.234s] INFO:colcon.colcon_ros.task.ament_cmake.build:Building ROS package in '/root/robocup-software/src/rj_convert' with build type 'ament_cmake' +[0.238s] INFO:colcon.colcon_cmake.task.cmake.build:Building CMake package in '/root/robocup-software/src/rj_convert' +[0.245s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems +[0.246s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell +[0.246s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment +[0.254s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +[0.949s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/root/robocup-software/build/rj_convert' returned '0': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +[0.950s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake --build /root/robocup-software/build/rj_convert -- -j10 -l10 +[2.984s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/root/robocup-software/build/rj_convert' returned '2': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake --build /root/robocup-software/build/rj_convert -- -j10 -l10 +[2.985s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(rj_convert) +[2.986s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert' for CMake module files +[2.987s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert' for CMake config files +[2.987s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/bin' +[2.987s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/lib/pkgconfig/rj_convert.pc' +[2.987s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/lib/python3.10/site-packages' +[2.987s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/bin' +[2.987s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.ps1' +[2.988s] INFO:colcon.colcon_core.shell:Creating package descriptor '/root/robocup-software/install/rj_convert/share/rj_convert/package.dsv' +[2.988s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.sh' +[2.989s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.bash' +[2.989s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.zsh' +[2.990s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/root/robocup-software/install/rj_convert/share/colcon-core/packages/rj_convert) +[3.003s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop +[3.003s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed +[3.003s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '2' +[3.003s] DEBUG:colcon.colcon_core.event_reactor:joining thread +[3.007s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems +[3.007s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems +[3.007s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' +[3.015s] DEBUG:colcon.colcon_core.event_reactor:joined thread +[3.016s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.ps1' +[3.017s] INFO:colcon.colcon_core.shell:Creating prefix util module '/root/robocup-software/install/_local_setup_util_ps1.py' +[3.018s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.ps1' +[3.019s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.sh' +[3.019s] INFO:colcon.colcon_core.shell:Creating prefix util module '/root/robocup-software/install/_local_setup_util_sh.py' +[3.019s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.sh' +[3.020s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.bash' +[3.020s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.bash' +[3.020s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.zsh' +[3.021s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.zsh' diff --git a/log/build_2025-01-30_16-30-19/rj_convert/command.log b/log/build_2025-01-30_16-30-19/rj_convert/command.log new file mode 100644 index 00000000000..59980599d3b --- /dev/null +++ b/log/build_2025-01-30_16-30-19/rj_convert/command.log @@ -0,0 +1,4 @@ +Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +Invoked command in '/root/robocup-software/build/rj_convert' returned '0': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake --build /root/robocup-software/build/rj_convert -- -j10 -l10 +Invoked command in '/root/robocup-software/build/rj_convert' returned '2': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake --build /root/robocup-software/build/rj_convert -- -j10 -l10 diff --git a/log/build_2025-01-30_16-30-19/rj_convert/stderr.log b/log/build_2025-01-30_16-30-19/rj_convert/stderr.log new file mode 100644 index 00000000000..16d38f9806b --- /dev/null +++ b/log/build_2025-01-30_16-30-19/rj_convert/stderr.log @@ -0,0 +1,7 @@ +/root/robocup-software/src/rj_convert/test/ros_convert_test.cpp:5:10: fatal error: rj_convert/testing/ros_convert_testing.hpp: No such file or directory + 5 | #include  + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +compilation terminated. +gmake[2]: *** [CMakeFiles/test_rj_convert.dir/build.make:76: CMakeFiles/test_rj_convert.dir/test/ros_convert_test.cpp.o] Error 1 +gmake[1]: *** [CMakeFiles/Makefile2:156: CMakeFiles/test_rj_convert.dir/all] Error 2 +gmake: *** [Makefile:146: all] Error 2 diff --git a/log/build_2025-01-30_16-30-19/rj_convert/stdout.log b/log/build_2025-01-30_16-30-19/rj_convert/stdout.log new file mode 100644 index 00000000000..7fba6cb93d9 --- /dev/null +++ b/log/build_2025-01-30_16-30-19/rj_convert/stdout.log @@ -0,0 +1,52 @@ +-- The C compiler identification is GNU 11.4.0 +-- The CXX compiler identification is GNU 11.4.0 +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Check for working C compiler: /usr/bin/cc - skipped +-- Detecting C compile features +-- Detecting C compile features - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Check for working CXX compiler: /usr/bin/c++ - skipped +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake) +-- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter +-- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake) +-- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake) +-- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake) +-- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake) +-- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c +-- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp +-- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake) +-- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake) +-- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") +-- Found FastRTPS: /opt/ros/humble/include +-- Using RMW implementation 'rmw_fastrtps_cpp' as default +-- Looking for pthread.h +-- Looking for pthread.h - found +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +-- Found Threads: TRUE +-- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake) +-- Found gtest sources under '/opt/ros/humble/src/gtest_vendor': C++ tests using 'Google Test' will be built +-- Added test 'copyright' to check source files copyright and LICENSE +-- Added test 'cppcheck' to perform static code analysis on C / C++ code +-- Configured cppcheck include dirs: /root/robocup-software/src/rj_convert/include +-- Configured cppcheck exclude dirs and/or files: +-- Added test 'cpplint' to check C / C++ code against the Google style +-- Configured cpplint exclude dirs and/or files: +-- Added test 'lint_cmake' to check CMake code style +-- Added test 'uncrustify' to check C / C++ code style +-- Configured uncrustify additional arguments: +-- Added test 'xmllint' to check XML markup files +-- Configuring done +-- Generating done +-- Build files have been written to: /root/robocup-software/build/rj_convert +[ 16%] Building CXX object gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o +[ 33%] Building CXX object gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o +[ 50%] Linking CXX static library libgtest_main.a +[ 50%] Built target gtest_main +[ 66%] Linking CXX static library libgtest.a +[ 66%] Built target gtest +[ 83%] Building CXX object CMakeFiles/test_rj_convert.dir/test/ros_convert_test.cpp.o diff --git a/log/build_2025-01-30_16-30-19/rj_convert/stdout_stderr.log b/log/build_2025-01-30_16-30-19/rj_convert/stdout_stderr.log new file mode 100644 index 00000000000..ff2262768d2 --- /dev/null +++ b/log/build_2025-01-30_16-30-19/rj_convert/stdout_stderr.log @@ -0,0 +1,59 @@ +-- The C compiler identification is GNU 11.4.0 +-- The CXX compiler identification is GNU 11.4.0 +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Check for working C compiler: /usr/bin/cc - skipped +-- Detecting C compile features +-- Detecting C compile features - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Check for working CXX compiler: /usr/bin/c++ - skipped +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake) +-- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter +-- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake) +-- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake) +-- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake) +-- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake) +-- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c +-- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp +-- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake) +-- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake) +-- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") +-- Found FastRTPS: /opt/ros/humble/include +-- Using RMW implementation 'rmw_fastrtps_cpp' as default +-- Looking for pthread.h +-- Looking for pthread.h - found +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +-- Found Threads: TRUE +-- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake) +-- Found gtest sources under '/opt/ros/humble/src/gtest_vendor': C++ tests using 'Google Test' will be built +-- Added test 'copyright' to check source files copyright and LICENSE +-- Added test 'cppcheck' to perform static code analysis on C / C++ code +-- Configured cppcheck include dirs: /root/robocup-software/src/rj_convert/include +-- Configured cppcheck exclude dirs and/or files: +-- Added test 'cpplint' to check C / C++ code against the Google style +-- Configured cpplint exclude dirs and/or files: +-- Added test 'lint_cmake' to check CMake code style +-- Added test 'uncrustify' to check C / C++ code style +-- Configured uncrustify additional arguments: +-- Added test 'xmllint' to check XML markup files +-- Configuring done +-- Generating done +-- Build files have been written to: /root/robocup-software/build/rj_convert +[ 16%] Building CXX object gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o +[ 33%] Building CXX object gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o +[ 50%] Linking CXX static library libgtest_main.a +[ 50%] Built target gtest_main +[ 66%] Linking CXX static library libgtest.a +[ 66%] Built target gtest +[ 83%] Building CXX object CMakeFiles/test_rj_convert.dir/test/ros_convert_test.cpp.o +/root/robocup-software/src/rj_convert/test/ros_convert_test.cpp:5:10: fatal error: rj_convert/testing/ros_convert_testing.hpp: No such file or directory + 5 | #include  + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +compilation terminated. +gmake[2]: *** [CMakeFiles/test_rj_convert.dir/build.make:76: CMakeFiles/test_rj_convert.dir/test/ros_convert_test.cpp.o] Error 1 +gmake[1]: *** [CMakeFiles/Makefile2:156: CMakeFiles/test_rj_convert.dir/all] Error 2 +gmake: *** [Makefile:146: all] Error 2 diff --git a/log/build_2025-01-30_16-30-19/rj_convert/streams.log b/log/build_2025-01-30_16-30-19/rj_convert/streams.log new file mode 100644 index 00000000000..211ed9f1780 --- /dev/null +++ b/log/build_2025-01-30_16-30-19/rj_convert/streams.log @@ -0,0 +1,63 @@ +[0.009s] Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +[0.046s] -- The C compiler identification is GNU 11.4.0 +[0.094s] -- The CXX compiler identification is GNU 11.4.0 +[0.099s] -- Detecting C compiler ABI info +[0.138s] -- Detecting C compiler ABI info - done +[0.143s] -- Check for working C compiler: /usr/bin/cc - skipped +[0.143s] -- Detecting C compile features +[0.144s] -- Detecting C compile features - done +[0.146s] -- Detecting CXX compiler ABI info +[0.186s] -- Detecting CXX compiler ABI info - done +[0.192s] -- Check for working CXX compiler: /usr/bin/c++ - skipped +[0.192s] -- Detecting CXX compile features +[0.192s] -- Detecting CXX compile features - done +[0.194s] -- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake) +[0.277s] -- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter +[0.321s] -- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake) +[0.344s] -- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake) +[0.346s] -- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake) +[0.352s] -- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake) +[0.358s] -- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c +[0.367s] -- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp +[0.394s] -- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake) +[0.395s] -- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake) +[0.440s] -- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") +[0.456s] -- Found FastRTPS: /opt/ros/humble/include +[0.478s] -- Using RMW implementation 'rmw_fastrtps_cpp' as default +[0.483s] -- Looking for pthread.h +[0.523s] -- Looking for pthread.h - found +[0.524s] -- Performing Test CMAKE_HAVE_LIBC_PTHREAD +[0.566s] -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +[0.566s] -- Found Threads: TRUE +[0.603s] -- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake) +[0.647s] -- Found gtest sources under '/opt/ros/humble/src/gtest_vendor': C++ tests using 'Google Test' will be built +[0.654s] -- Added test 'copyright' to check source files copyright and LICENSE +[0.654s] -- Added test 'cppcheck' to perform static code analysis on C / C++ code +[0.654s] -- Configured cppcheck include dirs: /root/robocup-software/src/rj_convert/include +[0.654s] -- Configured cppcheck exclude dirs and/or files: +[0.655s] -- Added test 'cpplint' to check C / C++ code against the Google style +[0.655s] -- Configured cpplint exclude dirs and/or files: +[0.655s] -- Added test 'lint_cmake' to check CMake code style +[0.655s] -- Added test 'uncrustify' to check C / C++ code style +[0.655s] -- Configured uncrustify additional arguments: +[0.656s] -- Added test 'xmllint' to check XML markup files +[0.656s] -- Configuring done +[0.689s] -- Generating done +[0.696s] -- Build files have been written to: /root/robocup-software/build/rj_convert +[0.705s] Invoked command in '/root/robocup-software/build/rj_convert' returned '0': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +[0.705s] Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake --build /root/robocup-software/build/rj_convert -- -j10 -l10 +[0.730s] [ 16%] Building CXX object gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o +[0.730s] [ 33%] Building CXX object gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o +[1.335s] [ 50%] Linking CXX static library libgtest_main.a +[1.818s] [ 50%] Built target gtest_main +[2.591s] [ 66%] Linking CXX static library libgtest.a +[2.640s] [ 66%] Built target gtest +[2.648s] [ 83%] Building CXX object CMakeFiles/test_rj_convert.dir/test/ros_convert_test.cpp.o +[2.736s] /root/robocup-software/src/rj_convert/test/ros_convert_test.cpp:5:10: fatal error: rj_convert/testing/ros_convert_testing.hpp: No such file or directory +[2.736s] 5 | #include  +[2.736s] | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +[2.736s] compilation terminated. +[2.736s] gmake[2]: *** [CMakeFiles/test_rj_convert.dir/build.make:76: CMakeFiles/test_rj_convert.dir/test/ros_convert_test.cpp.o] Error 1 +[2.736s] gmake[1]: *** [CMakeFiles/Makefile2:156: CMakeFiles/test_rj_convert.dir/all] Error 2 +[2.737s] gmake: *** [Makefile:146: all] Error 2 +[2.740s] Invoked command in '/root/robocup-software/build/rj_convert' returned '2': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake --build /root/robocup-software/build/rj_convert -- -j10 -l10 diff --git a/log/build_2025-01-30_16-31-53/events.log b/log/build_2025-01-30_16-31-53/events.log new file mode 100644 index 00000000000..d786d39487d --- /dev/null +++ b/log/build_2025-01-30_16-31-53/events.log @@ -0,0 +1,118 @@ +[0.000000] (-) TimerEvent: {} +[0.000076] (-) JobUnselected: {'identifier': 'external'} +[0.000133] (-) JobUnselected: {'identifier': 'geometry2d'} +[0.000160] (-) JobUnselected: {'identifier': 'rj_common'} +[0.000171] (-) JobUnselected: {'identifier': 'rj_config'} +[0.000179] (-) JobUnselected: {'identifier': 'rj_constants'} +[0.000187] (-) JobUnselected: {'identifier': 'rj_drawing_msgs'} +[0.000199] (-) JobUnselected: {'identifier': 'rj_geometry_msgs'} +[0.000207] (-) JobUnselected: {'identifier': 'rj_msgs'} +[0.000219] (-) JobUnselected: {'identifier': 'rj_param_utils'} +[0.000227] (-) JobUnselected: {'identifier': 'rj_protos'} +[0.000238] (-) JobUnselected: {'identifier': 'rj_robocup_docs'} +[0.000246] (-) JobUnselected: {'identifier': 'rj_topic_utils'} +[0.000257] (-) JobUnselected: {'identifier': 'rj_utils'} +[0.000265] (-) JobUnselected: {'identifier': 'rj_vision_receiver'} +[0.000276] (-) JobUnselected: {'identifier': 'soccer'} +[0.000286] (rj_convert) JobQueued: {'identifier': 'rj_convert', 'dependencies': OrderedDict()} +[0.000300] (rj_convert) JobStarted: {'identifier': 'rj_convert'} +[0.003569] (rj_convert) JobProgress: {'identifier': 'rj_convert', 'progress': 'cmake'} +[0.003852] (rj_convert) Command: {'cmd': ['/usr/bin/cmake', '/root/robocup-software/src/rj_convert', '-DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert'], 'cwd': '/root/robocup-software/build/rj_convert', 'env': OrderedDict([('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'root'), ('HOSTNAME', '883453f99e27'), ('GIT_ASKPASS', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/extensions/git/dist/askpass.sh'), ('SHLVL', '2'), ('LD_LIBRARY_PATH', '/opt/ros/humble/lib/aarch64-linux-gnu:/opt/ros/humble/lib'), ('BROWSER', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/bin/helpers/browser.sh'), ('HOME', '/root'), ('TERM_PROGRAM_VERSION', '1.96.4'), ('VSCODE_IPC_HOOK_CLI', '/tmp/vscode-ipc-0f19b725-94e1-4be6-974b-9e834c3e0ec8.sock'), ('ROS_PYTHON_VERSION', '3'), ('VSCODE_GIT_ASKPASS_MAIN', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/extensions/git/dist/askpass-main.js'), ('VSCODE_GIT_ASKPASS_NODE', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/node'), ('COLORTERM', 'truecolor'), ('REMOTE_CONTAINERS', 'true'), ('ROS_DISTRO', 'humble'), ('REMOTE_CONTAINERS_IPC', '/tmp/vscode-remote-containers-ipc-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('TERM', 'xterm-256color'), ('COLCON_MIXIN_PATH', '/root/robocup-software/mixin'), ('ROS_LOCALHOST_ONLY', '0'), ('PATH', '/opt/ros/humble/bin:/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/bin/remote-cli:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.vscode-server/data/User/globalStorage/github.copilot-chat/debugCommand'), ('REMOTE_CONTAINERS_SOCKETS', '["/tmp/vscode-ssh-auth-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock"]'), ('DISPLAY', ':1'), ('LANG', 'en_US.UTF-8'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/tmp/vscode-git-d1d340e128.sock'), ('TERM_PROGRAM', 'vscode'), ('SSH_AUTH_SOCK', '/tmp/vscode-ssh-auth-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock'), ('AMENT_PREFIX_PATH', '/opt/ros/humble'), ('DEBIAN_FRONTEND', 'noninteractive'), ('SHELL', '/bin/bash'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('PWD', '/root/robocup-software/build/rj_convert'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('TZ', 'America/New_York'), ('COLCON', '1'), ('CMAKE_PREFIX_PATH', '/opt/ros/humble')]), 'shell': False} +[0.061658] (rj_convert) StdoutLine: {'line': b'-- The C compiler identification is GNU 11.4.0\n'} +[0.097702] (rj_convert) StdoutLine: {'line': b'-- The CXX compiler identification is GNU 11.4.0\n'} +[0.100048] (-) TimerEvent: {} +[0.102711] (rj_convert) StdoutLine: {'line': b'-- Detecting C compiler ABI info\n'} +[0.141716] (rj_convert) StdoutLine: {'line': b'-- Detecting C compiler ABI info - done\n'} +[0.146683] (rj_convert) StdoutLine: {'line': b'-- Check for working C compiler: /usr/bin/cc - skipped\n'} +[0.146876] (rj_convert) StdoutLine: {'line': b'-- Detecting C compile features\n'} +[0.147257] (rj_convert) StdoutLine: {'line': b'-- Detecting C compile features - done\n'} +[0.149271] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compiler ABI info\n'} +[0.188804] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compiler ABI info - done\n'} +[0.193768] (rj_convert) StdoutLine: {'line': b'-- Check for working CXX compiler: /usr/bin/c++ - skipped\n'} +[0.193956] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compile features\n'} +[0.194280] (rj_convert) StdoutLine: {'line': b'-- Detecting CXX compile features - done\n'} +[0.195880] (rj_convert) StdoutLine: {'line': b'-- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake)\n'} +[0.201184] (-) TimerEvent: {} +[0.269907] (rj_convert) StdoutLine: {'line': b'-- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter \n'} +[0.302663] (-) TimerEvent: {} +[0.309372] (rj_convert) StdoutLine: {'line': b'-- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake)\n'} +[0.331689] (rj_convert) StdoutLine: {'line': b'-- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake)\n'} +[0.333961] (rj_convert) StdoutLine: {'line': b'-- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake)\n'} +[0.338776] (rj_convert) StdoutLine: {'line': b'-- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake)\n'} +[0.345524] (rj_convert) StdoutLine: {'line': b'-- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c\n'} +[0.355238] (rj_convert) StdoutLine: {'line': b'-- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp\n'} +[0.379718] (rj_convert) StdoutLine: {'line': b'-- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake)\n'} +[0.380833] (rj_convert) StdoutLine: {'line': b'-- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake)\n'} +[0.407323] (-) TimerEvent: {} +[0.416715] (rj_convert) StdoutLine: {'line': b'-- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") \n'} +[0.430820] (rj_convert) StdoutLine: {'line': b'-- Found FastRTPS: /opt/ros/humble/include \n'} +[0.451710] (rj_convert) StdoutLine: {'line': b"-- Using RMW implementation 'rmw_fastrtps_cpp' as default\n"} +[0.455977] (rj_convert) StdoutLine: {'line': b'-- Looking for pthread.h\n'} +[0.497809] (rj_convert) StdoutLine: {'line': b'-- Looking for pthread.h - found\n'} +[0.498350] (rj_convert) StdoutLine: {'line': b'-- Performing Test CMAKE_HAVE_LIBC_PTHREAD\n'} +[0.509058] (-) TimerEvent: {} +[0.537439] (rj_convert) StdoutLine: {'line': b'-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success\n'} +[0.538334] (rj_convert) StdoutLine: {'line': b'-- Found Threads: TRUE \n'} +[0.575365] (rj_convert) StdoutLine: {'line': b'-- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake)\n'} +[0.609353] (-) TimerEvent: {} +[0.617626] (rj_convert) StdoutLine: {'line': b"-- Found gtest sources under '/opt/ros/humble/src/gtest_vendor': C++ tests using 'Google Test' will be built\n"} +[0.623450] (rj_convert) StdoutLine: {'line': b"-- Added test 'copyright' to check source files copyright and LICENSE\n"} +[0.624006] (rj_convert) StdoutLine: {'line': b"-- Added test 'cppcheck' to perform static code analysis on C / C++ code\n"} +[0.624193] (rj_convert) StdoutLine: {'line': b'-- Configured cppcheck include dirs: /root/robocup-software/src/rj_convert/include\n'} +[0.624230] (rj_convert) StdoutLine: {'line': b'-- Configured cppcheck exclude dirs and/or files: \n'} +[0.624554] (rj_convert) StdoutLine: {'line': b"-- Added test 'cpplint' to check C / C++ code against the Google style\n"} +[0.624600] (rj_convert) StdoutLine: {'line': b'-- Configured cpplint exclude dirs and/or files: \n'} +[0.624850] (rj_convert) StdoutLine: {'line': b"-- Added test 'lint_cmake' to check CMake code style\n"} +[0.625356] (rj_convert) StdoutLine: {'line': b"-- Added test 'uncrustify' to check C / C++ code style\n"} +[0.625396] (rj_convert) StdoutLine: {'line': b'-- Configured uncrustify additional arguments: \n'} +[0.625606] (rj_convert) StdoutLine: {'line': b"-- Added test 'xmllint' to check XML markup files\n"} +[0.626562] (rj_convert) StdoutLine: {'line': b'-- Configuring done\n'} +[0.636413] (rj_convert) StdoutLine: {'line': b'-- Generating done\n'} +[0.637873] (rj_convert) StdoutLine: {'line': b'-- Build files have been written to: /root/robocup-software/build/rj_convert\n'} +[0.642673] (rj_convert) CommandEnded: {'returncode': 0} +[0.643853] (rj_convert) JobProgress: {'identifier': 'rj_convert', 'progress': 'build'} +[0.643874] (rj_convert) Command: {'cmd': ['/usr/bin/cmake', '--build', '/root/robocup-software/build/rj_convert', '--', '-j10', '-l10'], 'cwd': '/root/robocup-software/build/rj_convert', 'env': OrderedDict([('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'root'), ('HOSTNAME', '883453f99e27'), ('GIT_ASKPASS', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/extensions/git/dist/askpass.sh'), ('SHLVL', '2'), ('LD_LIBRARY_PATH', '/opt/ros/humble/lib/aarch64-linux-gnu:/opt/ros/humble/lib'), ('BROWSER', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/bin/helpers/browser.sh'), ('HOME', '/root'), ('TERM_PROGRAM_VERSION', '1.96.4'), ('VSCODE_IPC_HOOK_CLI', '/tmp/vscode-ipc-0f19b725-94e1-4be6-974b-9e834c3e0ec8.sock'), ('ROS_PYTHON_VERSION', '3'), ('VSCODE_GIT_ASKPASS_MAIN', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/extensions/git/dist/askpass-main.js'), ('VSCODE_GIT_ASKPASS_NODE', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/node'), ('COLORTERM', 'truecolor'), ('REMOTE_CONTAINERS', 'true'), ('ROS_DISTRO', 'humble'), ('REMOTE_CONTAINERS_IPC', '/tmp/vscode-remote-containers-ipc-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('TERM', 'xterm-256color'), ('COLCON_MIXIN_PATH', '/root/robocup-software/mixin'), ('ROS_LOCALHOST_ONLY', '0'), ('PATH', '/opt/ros/humble/bin:/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/bin/remote-cli:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.vscode-server/data/User/globalStorage/github.copilot-chat/debugCommand'), ('REMOTE_CONTAINERS_SOCKETS', '["/tmp/vscode-ssh-auth-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock"]'), ('DISPLAY', ':1'), ('LANG', 'en_US.UTF-8'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/tmp/vscode-git-d1d340e128.sock'), ('TERM_PROGRAM', 'vscode'), ('SSH_AUTH_SOCK', '/tmp/vscode-ssh-auth-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock'), ('AMENT_PREFIX_PATH', '/opt/ros/humble'), ('DEBIAN_FRONTEND', 'noninteractive'), ('SHELL', '/bin/bash'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('PWD', '/root/robocup-software/build/rj_convert'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('TZ', 'America/New_York'), ('COLCON', '1'), ('CMAKE_PREFIX_PATH', '/opt/ros/humble')]), 'shell': False} +[0.660611] (rj_convert) StdoutLine: {'line': b'\x1b[35m\x1b[1mConsolidate compiler generated dependencies of target gtest_main\x1b[0m\n'} +[0.660716] (rj_convert) StdoutLine: {'line': b'\x1b[35m\x1b[1mConsolidate compiler generated dependencies of target gtest\x1b[0m\n'} +[0.667730] (rj_convert) StdoutLine: {'line': b'[ 33%] Built target gtest_main\n'} +[0.667803] (rj_convert) StdoutLine: {'line': b'[ 66%] Built target gtest\n'} +[0.677072] (rj_convert) StdoutLine: {'line': b'[ 83%] \x1b[32mBuilding CXX object CMakeFiles/test_rj_convert.dir/test/ros_convert_test.cpp.o\x1b[0m\n'} +[0.710360] (-) TimerEvent: {} +[0.810596] (-) TimerEvent: {} +[0.910860] (-) TimerEvent: {} +[1.011150] (-) TimerEvent: {} +[1.111474] (-) TimerEvent: {} +[1.211797] (-) TimerEvent: {} +[1.313316] (-) TimerEvent: {} +[1.418645] (-) TimerEvent: {} +[1.474588] (rj_convert) StdoutLine: {'line': b'[100%] \x1b[32m\x1b[1mLinking CXX executable test_rj_convert\x1b[0m\n'} +[1.519378] (-) TimerEvent: {} +[1.584029] (rj_convert) StdoutLine: {'line': b'[100%] Built target test_rj_convert\n'} +[1.588735] (rj_convert) CommandEnded: {'returncode': 0} +[1.589339] (rj_convert) JobProgress: {'identifier': 'rj_convert', 'progress': 'install'} +[1.592895] (rj_convert) Command: {'cmd': ['/usr/bin/cmake', '--install', '/root/robocup-software/build/rj_convert'], 'cwd': '/root/robocup-software/build/rj_convert', 'env': OrderedDict([('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'root'), ('HOSTNAME', '883453f99e27'), ('GIT_ASKPASS', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/extensions/git/dist/askpass.sh'), ('SHLVL', '2'), ('LD_LIBRARY_PATH', '/opt/ros/humble/lib/aarch64-linux-gnu:/opt/ros/humble/lib'), ('BROWSER', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/bin/helpers/browser.sh'), ('HOME', '/root'), ('TERM_PROGRAM_VERSION', '1.96.4'), ('VSCODE_IPC_HOOK_CLI', '/tmp/vscode-ipc-0f19b725-94e1-4be6-974b-9e834c3e0ec8.sock'), ('ROS_PYTHON_VERSION', '3'), ('VSCODE_GIT_ASKPASS_MAIN', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/extensions/git/dist/askpass-main.js'), ('VSCODE_GIT_ASKPASS_NODE', '/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/node'), ('COLORTERM', 'truecolor'), ('REMOTE_CONTAINERS', 'true'), ('ROS_DISTRO', 'humble'), ('REMOTE_CONTAINERS_IPC', '/tmp/vscode-remote-containers-ipc-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('TERM', 'xterm-256color'), ('COLCON_MIXIN_PATH', '/root/robocup-software/mixin'), ('ROS_LOCALHOST_ONLY', '0'), ('PATH', '/opt/ros/humble/bin:/root/.vscode-server/bin/cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba/bin/remote-cli:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.vscode-server/data/User/globalStorage/github.copilot-chat/debugCommand'), ('REMOTE_CONTAINERS_SOCKETS', '["/tmp/vscode-ssh-auth-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock"]'), ('DISPLAY', ':1'), ('LANG', 'en_US.UTF-8'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/tmp/vscode-git-d1d340e128.sock'), ('TERM_PROGRAM', 'vscode'), ('SSH_AUTH_SOCK', '/tmp/vscode-ssh-auth-974ebaf1-9881-4728-bbe2-98f00819a2b0.sock'), ('AMENT_PREFIX_PATH', '/opt/ros/humble'), ('DEBIAN_FRONTEND', 'noninteractive'), ('SHELL', '/bin/bash'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('PWD', '/root/robocup-software/build/rj_convert'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('TZ', 'America/New_York'), ('COLCON', '1'), ('CMAKE_PREFIX_PATH', '/opt/ros/humble')]), 'shell': False} +[1.595771] (rj_convert) StdoutLine: {'line': b'-- Install configuration: ""\n'} +[1.595933] (rj_convert) StdoutLine: {'line': b'-- Installing: /root/robocup-software/install/rj_convert/include/\n'} +[1.596315] (rj_convert) StdoutLine: {'line': b'-- Installing: /root/robocup-software/install/rj_convert/include//rj_convert\n'} +[1.596384] (rj_convert) StdoutLine: {'line': b'-- Installing: /root/robocup-software/install/rj_convert/include//rj_convert/ros_convert.hpp\n'} +[1.596461] (rj_convert) StdoutLine: {'line': b'-- Installing: /root/robocup-software/install/rj_convert/include//rj_convert/test\n'} +[1.596507] (rj_convert) StdoutLine: {'line': b'-- Installing: /root/robocup-software/install/rj_convert/include//rj_convert/test/ros_convert_testing.hpp\n'} +[1.596549] (rj_convert) StdoutLine: {'line': b'-- Installing: /root/robocup-software/install/rj_convert/share/ament_index/resource_index/package_run_dependencies/rj_convert\n'} +[1.596580] (rj_convert) StdoutLine: {'line': b'-- Installing: /root/robocup-software/install/rj_convert/share/ament_index/resource_index/parent_prefix_path/rj_convert\n'} +[1.596616] (rj_convert) StdoutLine: {'line': b'-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/environment/ament_prefix_path.sh\n'} +[1.597190] (rj_convert) StdoutLine: {'line': b'-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/environment/ament_prefix_path.dsv\n'} +[1.597239] (rj_convert) StdoutLine: {'line': b'-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/environment/path.sh\n'} +[1.597329] (rj_convert) StdoutLine: {'line': b'-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/environment/path.dsv\n'} +[1.597421] (rj_convert) StdoutLine: {'line': b'-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/local_setup.bash\n'} +[1.597467] (rj_convert) StdoutLine: {'line': b'-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/local_setup.sh\n'} +[1.597510] (rj_convert) StdoutLine: {'line': b'-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/local_setup.zsh\n'} +[1.597589] (rj_convert) StdoutLine: {'line': b'-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/local_setup.dsv\n'} +[1.597627] (rj_convert) StdoutLine: {'line': b'-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/package.dsv\n'} +[1.597654] (rj_convert) StdoutLine: {'line': b'-- Installing: /root/robocup-software/install/rj_convert/share/ament_index/resource_index/packages/rj_convert\n'} +[1.597681] (rj_convert) StdoutLine: {'line': b'-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/cmake/ament_cmake_export_dependencies-extras.cmake\n'} +[1.597709] (rj_convert) StdoutLine: {'line': b'-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/cmake/rj_convertConfig.cmake\n'} +[1.597736] (rj_convert) StdoutLine: {'line': b'-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/cmake/rj_convertConfig-version.cmake\n'} +[1.597764] (rj_convert) StdoutLine: {'line': b'-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/package.xml\n'} +[1.598301] (rj_convert) CommandEnded: {'returncode': 0} +[1.606578] (rj_convert) JobEnded: {'identifier': 'rj_convert', 'rc': 0} +[1.606984] (-) EventReactorShutdown: {} diff --git a/log/build_2025-01-30_16-31-53/logger_all.log b/log/build_2025-01-30_16-31-53/logger_all.log new file mode 100644 index 00000000000..cd7ad72ed4c --- /dev/null +++ b/log/build_2025-01-30_16-31-53/logger_all.log @@ -0,0 +1,496 @@ +[0.067s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build', '--packages-select', 'rj_convert', '--cmake-clean-cache'] +[0.067s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=10, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=['rj_convert'], packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=True, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) +[0.148s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters +[0.148s] INFO:colcon.colcon_metadata.package_discovery.colcon_meta:Using configuration from '/root/robocup-software/colcon.meta' +[0.148s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters +[0.148s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters +[0.148s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters +[0.149s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover +[0.149s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover +[0.149s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/root/robocup-software' +[0.149s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] +[0.149s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' +[0.149s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' +[0.149s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] +[0.149s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' +[0.149s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] +[0.149s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' +[0.149s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] +[0.149s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' +[0.155s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] +[0.155s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['ignore', 'ignore_ament_install'] +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'ignore' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'ignore_ament_install' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['colcon_pkg'] +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'colcon_pkg' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['colcon_meta'] +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'colcon_meta' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['ros'] +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'ros' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['cmake', 'python'] +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'cmake' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'python' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extensions ['python_setup_py'] +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(docker) by extension 'python_setup_py' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['ignore', 'ignore_ament_install'] +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'ignore' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'ignore_ament_install' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['colcon_pkg'] +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'colcon_pkg' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['colcon_meta'] +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'colcon_meta' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['ros'] +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'ros' +[0.156s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['cmake', 'python'] +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'cmake' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'python' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extensions ['python_setup_py'] +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(mixin) by extension 'python_setup_py' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['ignore', 'ignore_ament_install'] +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'ignore' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'ignore_ament_install' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['colcon_pkg'] +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'colcon_pkg' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['colcon_meta'] +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'colcon_meta' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['ros'] +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'ros' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['cmake', 'python'] +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'cmake' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'python' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extensions ['python_setup_py'] +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/ci) by extension 'python_setup_py' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['ignore', 'ignore_ament_install'] +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'ignore' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'ignore_ament_install' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['colcon_pkg'] +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'colcon_pkg' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['colcon_meta'] +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'colcon_meta' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['ros'] +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'ros' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['cmake', 'python'] +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'cmake' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'python' +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extensions ['python_setup_py'] +[0.157s] Level 1:colcon.colcon_core.package_identification:_identify(src/cmake) by extension 'python_setup_py' +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['ignore', 'ignore_ament_install'] +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'ignore' +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'ignore_ament_install' +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['colcon_pkg'] +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'colcon_pkg' +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['colcon_meta'] +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'colcon_meta' +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['ros'] +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'ros' +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['cmake', 'python'] +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'cmake' +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'python' +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extensions ['python_setup_py'] +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/config) by extension 'python_setup_py' +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['ignore', 'ignore_ament_install'] +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'ignore' +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'ignore_ament_install' +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['colcon_pkg'] +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'colcon_pkg' +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['colcon_meta'] +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'colcon_meta' +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['ros'] +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'ros' +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extensions ['cmake', 'python'] +[0.158s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'cmake' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/docs) by extension 'python' +[0.159s] DEBUG:colcon.colcon_core.package_identification:Package 'src/docs' with type 'cmake' and name 'rj_robocup_docs' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['ignore', 'ignore_ament_install'] +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'ignore' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'ignore_ament_install' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['colcon_pkg'] +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'colcon_pkg' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['colcon_meta'] +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'colcon_meta' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['ros'] +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'ros' +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extensions ['cmake', 'python'] +[0.159s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'cmake' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/external) by extension 'python' +[0.163s] DEBUG:colcon.colcon_core.package_identification:Package 'src/external' with type 'cmake' and name 'external' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['ignore', 'ignore_ament_install'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'ignore' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'ignore_ament_install' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['colcon_pkg'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'colcon_pkg' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['colcon_meta'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'colcon_meta' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['ros'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'ros' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['cmake', 'python'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'cmake' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'python' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extensions ['python_setup_py'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/install) by extension 'python_setup_py' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['ignore', 'ignore_ament_install'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'ignore' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'ignore_ament_install' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['colcon_pkg'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'colcon_pkg' +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['colcon_meta'] +[0.163s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'colcon_meta' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['ros'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'ros' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['cmake', 'python'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'cmake' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'python' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extensions ['python_setup_py'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/launch) by extension 'python_setup_py' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['ignore', 'ignore_ament_install'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'ignore' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'ignore_ament_install' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['colcon_pkg'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'colcon_pkg' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['colcon_meta'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'colcon_meta' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['ros'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'ros' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extensions ['cmake', 'python'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'cmake' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_common) by extension 'python' +[0.164s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_common' with type 'cmake' and name 'rj_common' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['ignore', 'ignore_ament_install'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'ignore' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'ignore_ament_install' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['colcon_pkg'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'colcon_pkg' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['colcon_meta'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'colcon_meta' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['ros'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'ros' +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extensions ['cmake', 'python'] +[0.164s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'cmake' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_config) by extension 'python' +[0.165s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_config' with type 'cmake' and name 'rj_config' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['ignore', 'ignore_ament_install'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'ignore' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'ignore_ament_install' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['colcon_pkg'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'colcon_pkg' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['colcon_meta'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'colcon_meta' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['ros'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'ros' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extensions ['cmake', 'python'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'cmake' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_constants) by extension 'python' +[0.165s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_constants' with type 'cmake' and name 'rj_constants' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['ignore', 'ignore_ament_install'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'ignore' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'ignore_ament_install' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['colcon_pkg'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'colcon_pkg' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['colcon_meta'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'colcon_meta' +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extensions ['ros'] +[0.165s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_convert) by extension 'ros' +[0.167s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_convert' with type 'ros.ament_cmake' and name 'rj_convert' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['ignore', 'ignore_ament_install'] +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'ignore' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'ignore_ament_install' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['colcon_pkg'] +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'colcon_pkg' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['colcon_meta'] +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'colcon_meta' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extensions ['ros'] +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_drawing_msgs) by extension 'ros' +[0.167s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_drawing_msgs' with type 'ros.ament_cmake' and name 'rj_drawing_msgs' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['ignore', 'ignore_ament_install'] +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'ignore' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'ignore_ament_install' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['colcon_pkg'] +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'colcon_pkg' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['colcon_meta'] +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'colcon_meta' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['ros'] +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'ros' +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extensions ['cmake', 'python'] +[0.167s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'cmake' +[0.168s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry) by extension 'python' +[0.168s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_geometry' with type 'cmake' and name 'geometry2d' +[0.168s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['ignore', 'ignore_ament_install'] +[0.168s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'ignore' +[0.168s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'ignore_ament_install' +[0.168s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['colcon_pkg'] +[0.168s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'colcon_pkg' +[0.168s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['colcon_meta'] +[0.168s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'colcon_meta' +[0.168s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extensions ['ros'] +[0.168s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_geometry_msgs) by extension 'ros' +[0.168s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_geometry_msgs' with type 'ros.ament_cmake' and name 'rj_geometry_msgs' +[0.168s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['ignore', 'ignore_ament_install'] +[0.168s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'ignore' +[0.168s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'ignore_ament_install' +[0.168s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['colcon_pkg'] +[0.168s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'colcon_pkg' +[0.168s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['colcon_meta'] +[0.168s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'colcon_meta' +[0.168s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extensions ['ros'] +[0.168s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_msgs) by extension 'ros' +[0.169s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_msgs' with type 'ros.ament_cmake' and name 'rj_msgs' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['ignore', 'ignore_ament_install'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'ignore' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'ignore_ament_install' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['colcon_pkg'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'colcon_pkg' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['colcon_meta'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'colcon_meta' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['ros'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'ros' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extensions ['cmake', 'python'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'cmake' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_param_utils) by extension 'python' +[0.169s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_param_utils' with type 'cmake' and name 'rj_param_utils' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['ignore', 'ignore_ament_install'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'ignore' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'ignore_ament_install' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['colcon_pkg'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'colcon_pkg' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['colcon_meta'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'colcon_meta' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['ros'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'ros' +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extensions ['cmake', 'python'] +[0.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'cmake' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_protos) by extension 'python' +[0.170s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_protos' with type 'cmake' and name 'rj_protos' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['ignore', 'ignore_ament_install'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'ignore' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'ignore_ament_install' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['colcon_pkg'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'colcon_pkg' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['colcon_meta'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'colcon_meta' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['ros'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'ros' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extensions ['cmake', 'python'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'cmake' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_topic_utils) by extension 'python' +[0.170s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_topic_utils' with type 'cmake' and name 'rj_topic_utils' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['ignore', 'ignore_ament_install'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'ignore' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'ignore_ament_install' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['colcon_pkg'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'colcon_pkg' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['colcon_meta'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'colcon_meta' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['ros'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'ros' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extensions ['cmake', 'python'] +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'cmake' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_utils) by extension 'python' +[0.170s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_utils' with type 'cmake' and name 'rj_utils' +[0.170s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['ignore', 'ignore_ament_install'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'ignore' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'ignore_ament_install' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['colcon_pkg'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'colcon_pkg' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['colcon_meta'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'colcon_meta' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['ros'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'ros' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extensions ['cmake', 'python'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'cmake' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/rj_vision_receiver) by extension 'python' +[0.171s] DEBUG:colcon.colcon_core.package_identification:Package 'src/rj_vision_receiver' with type 'cmake' and name 'rj_vision_receiver' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['ignore', 'ignore_ament_install'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'ignore' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'ignore_ament_install' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['colcon_pkg'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'colcon_pkg' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['colcon_meta'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'colcon_meta' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['ros'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'ros' +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extensions ['cmake', 'python'] +[0.171s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'cmake' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(src/soccer) by extension 'python' +[0.173s] DEBUG:colcon.colcon_core.package_identification:Package 'src/soccer' with type 'cmake' and name 'soccer' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['ignore', 'ignore_ament_install'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'ignore' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'ignore_ament_install' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['colcon_pkg'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'colcon_pkg' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['colcon_meta'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'colcon_meta' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['ros'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'ros' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['cmake', 'python'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'cmake' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'python' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extensions ['python_setup_py'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util) by extension 'python_setup_py' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['ignore', 'ignore_ament_install'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'ignore' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'ignore_ament_install' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['colcon_pkg'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'colcon_pkg' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['colcon_meta'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'colcon_meta' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['ros'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'ros' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['cmake', 'python'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'cmake' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'python' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extensions ['python_setup_py'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker) by extension 'python_setup_py' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['ignore', 'ignore_ament_install'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'ignore' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'ignore_ament_install' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['colcon_pkg'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'colcon_pkg' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['colcon_meta'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'colcon_meta' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['ros'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'ros' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['cmake', 'python'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'cmake' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'python' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extensions ['python_setup_py'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/docker/baseimage) by extension 'python_setup_py' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['ignore', 'ignore_ament_install'] +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'ignore' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'ignore_ament_install' +[0.173s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['colcon_pkg'] +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'colcon_pkg' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['colcon_meta'] +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'colcon_meta' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['ros'] +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'ros' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['cmake', 'python'] +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'cmake' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'python' +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extensions ['python_setup_py'] +[0.174s] Level 1:colcon.colcon_core.package_identification:_identify(util/git-hooks) by extension 'python_setup_py' +[0.174s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults +[0.174s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover +[0.174s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults +[0.174s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover +[0.174s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults +[0.190s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'external' in 'src/external' +[0.190s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_constants' in 'src/rj_constants' +[0.190s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_geometry_msgs' in 'src/rj_geometry_msgs' +[0.190s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_param_utils' in 'src/rj_param_utils' +[0.190s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_protos' in 'src/rj_protos' +[0.190s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_robocup_docs' in 'src/docs' +[0.190s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_topic_utils' in 'src/rj_topic_utils' +[0.190s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'geometry2d' in 'src/rj_geometry' +[0.190s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_drawing_msgs' in 'src/rj_drawing_msgs' +[0.190s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_msgs' in 'src/rj_msgs' +[0.190s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_common' in 'src/rj_common' +[0.190s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_config' in 'src/rj_config' +[0.190s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_utils' in 'src/rj_utils' +[0.190s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'rj_vision_receiver' in 'src/rj_vision_receiver' +[0.190s] INFO:colcon.colcon_core.package_selection:Skipping not selected package 'soccer' in 'src/soccer' +[0.190s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters +[0.190s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover +[0.192s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 232 installed packages in /opt/ros/humble +[0.192s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults +[0.211s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_args' from command line to 'None' +[0.211s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_target' from command line to 'None' +[0.211s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_target_skip_unavailable' from command line to 'False' +[0.211s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_clean_cache' from command line to 'True' +[0.211s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_clean_first' from command line to 'False' +[0.211s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'cmake_force_configure' from command line to 'False' +[0.211s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'ament_cmake_args' from command line to 'None' +[0.211s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'catkin_cmake_args' from command line to 'None' +[0.211s] Level 5:colcon.colcon_core.verb:set package 'rj_convert' build argument 'catkin_skip_building_tests' from command line to 'False' +[0.211s] DEBUG:colcon.colcon_core.verb:Building package 'rj_convert' with the following arguments: {'ament_cmake_args': None, 'build_base': '/root/robocup-software/build/rj_convert', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': True, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/root/robocup-software/install/rj_convert', 'merge_install': False, 'path': '/root/robocup-software/src/rj_convert', 'symlink_install': False, 'test_result_base': None} +[0.211s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor +[0.212s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete +[0.212s] INFO:colcon.colcon_ros.task.ament_cmake.build:Building ROS package in '/root/robocup-software/src/rj_convert' with build type 'ament_cmake' +[0.212s] INFO:colcon.colcon_cmake.task.cmake.build:Building CMake package in '/root/robocup-software/src/rj_convert' +[0.213s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems +[0.213s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell +[0.213s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment +[0.218s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +[0.856s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/root/robocup-software/build/rj_convert' returned '0': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +[0.856s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake --build /root/robocup-software/build/rj_convert -- -j10 -l10 +[1.801s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/root/robocup-software/build/rj_convert' returned '0': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake --build /root/robocup-software/build/rj_convert -- -j10 -l10 +[1.805s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake --install /root/robocup-software/build/rj_convert +[1.810s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(rj_convert) +[1.811s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/root/robocup-software/build/rj_convert' returned '0': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake --install /root/robocup-software/build/rj_convert +[1.812s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert' for CMake module files +[1.812s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert' for CMake config files +[1.812s] Level 1:colcon.colcon_core.shell:create_environment_hook('rj_convert', 'cmake_prefix_path') +[1.812s] INFO:colcon.colcon_core.shell:Creating environment hook '/root/robocup-software/install/rj_convert/share/rj_convert/hook/cmake_prefix_path.ps1' +[1.812s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/root/robocup-software/install/rj_convert/share/rj_convert/hook/cmake_prefix_path.dsv' +[1.814s] INFO:colcon.colcon_core.shell:Creating environment hook '/root/robocup-software/install/rj_convert/share/rj_convert/hook/cmake_prefix_path.sh' +[1.814s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/bin' +[1.814s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/lib/pkgconfig/rj_convert.pc' +[1.814s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/lib/python3.10/site-packages' +[1.814s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/bin' +[1.815s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.ps1' +[1.815s] INFO:colcon.colcon_core.shell:Creating package descriptor '/root/robocup-software/install/rj_convert/share/rj_convert/package.dsv' +[1.815s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.sh' +[1.816s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.bash' +[1.816s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.zsh' +[1.816s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/root/robocup-software/install/rj_convert/share/colcon-core/packages/rj_convert) +[1.816s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(rj_convert) +[1.817s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert' for CMake module files +[1.817s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert' for CMake config files +[1.817s] Level 1:colcon.colcon_core.shell:create_environment_hook('rj_convert', 'cmake_prefix_path') +[1.817s] INFO:colcon.colcon_core.shell:Creating environment hook '/root/robocup-software/install/rj_convert/share/rj_convert/hook/cmake_prefix_path.ps1' +[1.817s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/root/robocup-software/install/rj_convert/share/rj_convert/hook/cmake_prefix_path.dsv' +[1.817s] INFO:colcon.colcon_core.shell:Creating environment hook '/root/robocup-software/install/rj_convert/share/rj_convert/hook/cmake_prefix_path.sh' +[1.817s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/bin' +[1.817s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/lib/pkgconfig/rj_convert.pc' +[1.818s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/lib/python3.10/site-packages' +[1.818s] Level 1:colcon.colcon_core.environment:checking '/root/robocup-software/install/rj_convert/bin' +[1.818s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.ps1' +[1.818s] INFO:colcon.colcon_core.shell:Creating package descriptor '/root/robocup-software/install/rj_convert/share/rj_convert/package.dsv' +[1.818s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.sh' +[1.818s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.bash' +[1.818s] INFO:colcon.colcon_core.shell:Creating package script '/root/robocup-software/install/rj_convert/share/rj_convert/package.zsh' +[1.819s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/root/robocup-software/install/rj_convert/share/colcon-core/packages/rj_convert) +[1.819s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop +[1.819s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed +[1.819s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' +[1.819s] DEBUG:colcon.colcon_core.event_reactor:joining thread +[1.822s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems +[1.822s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems +[1.822s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' +[1.828s] DEBUG:colcon.colcon_core.event_reactor:joined thread +[1.829s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.ps1' +[1.830s] INFO:colcon.colcon_core.shell:Creating prefix util module '/root/robocup-software/install/_local_setup_util_ps1.py' +[1.831s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.ps1' +[1.832s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.sh' +[1.832s] INFO:colcon.colcon_core.shell:Creating prefix util module '/root/robocup-software/install/_local_setup_util_sh.py' +[1.832s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.sh' +[1.833s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.bash' +[1.833s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.bash' +[1.834s] INFO:colcon.colcon_core.shell:Creating prefix script '/root/robocup-software/install/local_setup.zsh' +[1.834s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/root/robocup-software/install/setup.zsh' diff --git a/log/build_2025-01-30_16-31-53/rj_convert/command.log b/log/build_2025-01-30_16-31-53/rj_convert/command.log new file mode 100644 index 00000000000..d16ed7f7801 --- /dev/null +++ b/log/build_2025-01-30_16-31-53/rj_convert/command.log @@ -0,0 +1,6 @@ +Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +Invoked command in '/root/robocup-software/build/rj_convert' returned '0': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake --build /root/robocup-software/build/rj_convert -- -j10 -l10 +Invoked command in '/root/robocup-software/build/rj_convert' returned '0': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake --build /root/robocup-software/build/rj_convert -- -j10 -l10 +Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake --install /root/robocup-software/build/rj_convert +Invoked command in '/root/robocup-software/build/rj_convert' returned '0': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake --install /root/robocup-software/build/rj_convert diff --git a/log/build_2025-01-30_16-31-53/rj_convert/stderr.log b/log/build_2025-01-30_16-31-53/rj_convert/stderr.log new file mode 100644 index 00000000000..e69de29bb2d diff --git a/log/build_2025-01-30_16-31-53/rj_convert/stdout.log b/log/build_2025-01-30_16-31-53/rj_convert/stdout.log new file mode 100644 index 00000000000..1bb7b2225df --- /dev/null +++ b/log/build_2025-01-30_16-31-53/rj_convert/stdout.log @@ -0,0 +1,74 @@ +-- The C compiler identification is GNU 11.4.0 +-- The CXX compiler identification is GNU 11.4.0 +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Check for working C compiler: /usr/bin/cc - skipped +-- Detecting C compile features +-- Detecting C compile features - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Check for working CXX compiler: /usr/bin/c++ - skipped +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake) +-- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter +-- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake) +-- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake) +-- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake) +-- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake) +-- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c +-- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp +-- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake) +-- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake) +-- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") +-- Found FastRTPS: /opt/ros/humble/include +-- Using RMW implementation 'rmw_fastrtps_cpp' as default +-- Looking for pthread.h +-- Looking for pthread.h - found +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +-- Found Threads: TRUE +-- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake) +-- Found gtest sources under '/opt/ros/humble/src/gtest_vendor': C++ tests using 'Google Test' will be built +-- Added test 'copyright' to check source files copyright and LICENSE +-- Added test 'cppcheck' to perform static code analysis on C / C++ code +-- Configured cppcheck include dirs: /root/robocup-software/src/rj_convert/include +-- Configured cppcheck exclude dirs and/or files: +-- Added test 'cpplint' to check C / C++ code against the Google style +-- Configured cpplint exclude dirs and/or files: +-- Added test 'lint_cmake' to check CMake code style +-- Added test 'uncrustify' to check C / C++ code style +-- Configured uncrustify additional arguments: +-- Added test 'xmllint' to check XML markup files +-- Configuring done +-- Generating done +-- Build files have been written to: /root/robocup-software/build/rj_convert +Consolidate compiler generated dependencies of target gtest_main +Consolidate compiler generated dependencies of target gtest +[ 33%] Built target gtest_main +[ 66%] Built target gtest +[ 83%] Building CXX object CMakeFiles/test_rj_convert.dir/test/ros_convert_test.cpp.o +[100%] Linking CXX executable test_rj_convert +[100%] Built target test_rj_convert +-- Install configuration: "" +-- Installing: /root/robocup-software/install/rj_convert/include/ +-- Installing: /root/robocup-software/install/rj_convert/include//rj_convert +-- Installing: /root/robocup-software/install/rj_convert/include//rj_convert/ros_convert.hpp +-- Installing: /root/robocup-software/install/rj_convert/include//rj_convert/test +-- Installing: /root/robocup-software/install/rj_convert/include//rj_convert/test/ros_convert_testing.hpp +-- Installing: /root/robocup-software/install/rj_convert/share/ament_index/resource_index/package_run_dependencies/rj_convert +-- Installing: /root/robocup-software/install/rj_convert/share/ament_index/resource_index/parent_prefix_path/rj_convert +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/environment/ament_prefix_path.sh +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/environment/ament_prefix_path.dsv +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/environment/path.sh +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/environment/path.dsv +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/local_setup.bash +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/local_setup.sh +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/local_setup.zsh +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/local_setup.dsv +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/package.dsv +-- Installing: /root/robocup-software/install/rj_convert/share/ament_index/resource_index/packages/rj_convert +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/cmake/ament_cmake_export_dependencies-extras.cmake +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/cmake/rj_convertConfig.cmake +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/cmake/rj_convertConfig-version.cmake +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/package.xml diff --git a/log/build_2025-01-30_16-31-53/rj_convert/stdout_stderr.log b/log/build_2025-01-30_16-31-53/rj_convert/stdout_stderr.log new file mode 100644 index 00000000000..1bb7b2225df --- /dev/null +++ b/log/build_2025-01-30_16-31-53/rj_convert/stdout_stderr.log @@ -0,0 +1,74 @@ +-- The C compiler identification is GNU 11.4.0 +-- The CXX compiler identification is GNU 11.4.0 +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Check for working C compiler: /usr/bin/cc - skipped +-- Detecting C compile features +-- Detecting C compile features - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Check for working CXX compiler: /usr/bin/c++ - skipped +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake) +-- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter +-- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake) +-- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake) +-- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake) +-- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake) +-- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c +-- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp +-- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake) +-- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake) +-- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") +-- Found FastRTPS: /opt/ros/humble/include +-- Using RMW implementation 'rmw_fastrtps_cpp' as default +-- Looking for pthread.h +-- Looking for pthread.h - found +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +-- Found Threads: TRUE +-- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake) +-- Found gtest sources under '/opt/ros/humble/src/gtest_vendor': C++ tests using 'Google Test' will be built +-- Added test 'copyright' to check source files copyright and LICENSE +-- Added test 'cppcheck' to perform static code analysis on C / C++ code +-- Configured cppcheck include dirs: /root/robocup-software/src/rj_convert/include +-- Configured cppcheck exclude dirs and/or files: +-- Added test 'cpplint' to check C / C++ code against the Google style +-- Configured cpplint exclude dirs and/or files: +-- Added test 'lint_cmake' to check CMake code style +-- Added test 'uncrustify' to check C / C++ code style +-- Configured uncrustify additional arguments: +-- Added test 'xmllint' to check XML markup files +-- Configuring done +-- Generating done +-- Build files have been written to: /root/robocup-software/build/rj_convert +Consolidate compiler generated dependencies of target gtest_main +Consolidate compiler generated dependencies of target gtest +[ 33%] Built target gtest_main +[ 66%] Built target gtest +[ 83%] Building CXX object CMakeFiles/test_rj_convert.dir/test/ros_convert_test.cpp.o +[100%] Linking CXX executable test_rj_convert +[100%] Built target test_rj_convert +-- Install configuration: "" +-- Installing: /root/robocup-software/install/rj_convert/include/ +-- Installing: /root/robocup-software/install/rj_convert/include//rj_convert +-- Installing: /root/robocup-software/install/rj_convert/include//rj_convert/ros_convert.hpp +-- Installing: /root/robocup-software/install/rj_convert/include//rj_convert/test +-- Installing: /root/robocup-software/install/rj_convert/include//rj_convert/test/ros_convert_testing.hpp +-- Installing: /root/robocup-software/install/rj_convert/share/ament_index/resource_index/package_run_dependencies/rj_convert +-- Installing: /root/robocup-software/install/rj_convert/share/ament_index/resource_index/parent_prefix_path/rj_convert +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/environment/ament_prefix_path.sh +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/environment/ament_prefix_path.dsv +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/environment/path.sh +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/environment/path.dsv +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/local_setup.bash +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/local_setup.sh +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/local_setup.zsh +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/local_setup.dsv +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/package.dsv +-- Installing: /root/robocup-software/install/rj_convert/share/ament_index/resource_index/packages/rj_convert +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/cmake/ament_cmake_export_dependencies-extras.cmake +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/cmake/rj_convertConfig.cmake +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/cmake/rj_convertConfig-version.cmake +-- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/package.xml diff --git a/log/build_2025-01-30_16-31-53/rj_convert/streams.log b/log/build_2025-01-30_16-31-53/rj_convert/streams.log new file mode 100644 index 00000000000..87067bdcb83 --- /dev/null +++ b/log/build_2025-01-30_16-31-53/rj_convert/streams.log @@ -0,0 +1,80 @@ +[0.005s] Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +[0.061s] -- The C compiler identification is GNU 11.4.0 +[0.097s] -- The CXX compiler identification is GNU 11.4.0 +[0.103s] -- Detecting C compiler ABI info +[0.141s] -- Detecting C compiler ABI info - done +[0.146s] -- Check for working C compiler: /usr/bin/cc - skipped +[0.147s] -- Detecting C compile features +[0.147s] -- Detecting C compile features - done +[0.149s] -- Detecting CXX compiler ABI info +[0.189s] -- Detecting CXX compiler ABI info - done +[0.193s] -- Check for working CXX compiler: /usr/bin/c++ - skipped +[0.194s] -- Detecting CXX compile features +[0.194s] -- Detecting CXX compile features - done +[0.196s] -- Found ament_cmake: 1.3.10 (/opt/ros/humble/share/ament_cmake/cmake) +[0.270s] -- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter +[0.309s] -- Found rclcpp: 16.0.10 (/opt/ros/humble/share/rclcpp/cmake) +[0.331s] -- Found rosidl_generator_c: 3.1.5 (/opt/ros/humble/share/rosidl_generator_c/cmake) +[0.334s] -- Found rosidl_adapter: 3.1.5 (/opt/ros/humble/share/rosidl_adapter/cmake) +[0.339s] -- Found rosidl_generator_cpp: 3.1.5 (/opt/ros/humble/share/rosidl_generator_cpp/cmake) +[0.345s] -- Using all available rosidl_typesupport_c: rosidl_typesupport_fastrtps_c;rosidl_typesupport_introspection_c +[0.355s] -- Using all available rosidl_typesupport_cpp: rosidl_typesupport_fastrtps_cpp;rosidl_typesupport_introspection_cpp +[0.379s] -- Found rmw_implementation_cmake: 6.1.2 (/opt/ros/humble/share/rmw_implementation_cmake/cmake) +[0.381s] -- Found rmw_fastrtps_cpp: 6.2.7 (/opt/ros/humble/share/rmw_fastrtps_cpp/cmake) +[0.416s] -- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2") +[0.431s] -- Found FastRTPS: /opt/ros/humble/include +[0.451s] -- Using RMW implementation 'rmw_fastrtps_cpp' as default +[0.456s] -- Looking for pthread.h +[0.498s] -- Looking for pthread.h - found +[0.498s] -- Performing Test CMAKE_HAVE_LIBC_PTHREAD +[0.537s] -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +[0.538s] -- Found Threads: TRUE +[0.575s] -- Found ament_lint_auto: 0.12.11 (/opt/ros/humble/share/ament_lint_auto/cmake) +[0.617s] -- Found gtest sources under '/opt/ros/humble/src/gtest_vendor': C++ tests using 'Google Test' will be built +[0.623s] -- Added test 'copyright' to check source files copyright and LICENSE +[0.624s] -- Added test 'cppcheck' to perform static code analysis on C / C++ code +[0.624s] -- Configured cppcheck include dirs: /root/robocup-software/src/rj_convert/include +[0.624s] -- Configured cppcheck exclude dirs and/or files: +[0.624s] -- Added test 'cpplint' to check C / C++ code against the Google style +[0.624s] -- Configured cpplint exclude dirs and/or files: +[0.625s] -- Added test 'lint_cmake' to check CMake code style +[0.625s] -- Added test 'uncrustify' to check C / C++ code style +[0.625s] -- Configured uncrustify additional arguments: +[0.625s] -- Added test 'xmllint' to check XML markup files +[0.626s] -- Configuring done +[0.636s] -- Generating done +[0.638s] -- Build files have been written to: /root/robocup-software/build/rj_convert +[0.643s] Invoked command in '/root/robocup-software/build/rj_convert' returned '0': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake /root/robocup-software/src/rj_convert -DCMAKE_INSTALL_PREFIX=/root/robocup-software/install/rj_convert +[0.644s] Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake --build /root/robocup-software/build/rj_convert -- -j10 -l10 +[0.660s] Consolidate compiler generated dependencies of target gtest_main +[0.660s] Consolidate compiler generated dependencies of target gtest +[0.667s] [ 33%] Built target gtest_main +[0.668s] [ 66%] Built target gtest +[0.677s] [ 83%] Building CXX object CMakeFiles/test_rj_convert.dir/test/ros_convert_test.cpp.o +[1.474s] [100%] Linking CXX executable test_rj_convert +[1.584s] [100%] Built target test_rj_convert +[1.588s] Invoked command in '/root/robocup-software/build/rj_convert' returned '0': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake --build /root/robocup-software/build/rj_convert -- -j10 -l10 +[1.593s] Invoking command in '/root/robocup-software/build/rj_convert': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake --install /root/robocup-software/build/rj_convert +[1.596s] -- Install configuration: "" +[1.596s] -- Installing: /root/robocup-software/install/rj_convert/include/ +[1.596s] -- Installing: /root/robocup-software/install/rj_convert/include//rj_convert +[1.596s] -- Installing: /root/robocup-software/install/rj_convert/include//rj_convert/ros_convert.hpp +[1.596s] -- Installing: /root/robocup-software/install/rj_convert/include//rj_convert/test +[1.596s] -- Installing: /root/robocup-software/install/rj_convert/include//rj_convert/test/ros_convert_testing.hpp +[1.596s] -- Installing: /root/robocup-software/install/rj_convert/share/ament_index/resource_index/package_run_dependencies/rj_convert +[1.596s] -- Installing: /root/robocup-software/install/rj_convert/share/ament_index/resource_index/parent_prefix_path/rj_convert +[1.596s] -- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/environment/ament_prefix_path.sh +[1.597s] -- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/environment/ament_prefix_path.dsv +[1.597s] -- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/environment/path.sh +[1.597s] -- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/environment/path.dsv +[1.597s] -- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/local_setup.bash +[1.597s] -- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/local_setup.sh +[1.597s] -- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/local_setup.zsh +[1.597s] -- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/local_setup.dsv +[1.597s] -- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/package.dsv +[1.597s] -- Installing: /root/robocup-software/install/rj_convert/share/ament_index/resource_index/packages/rj_convert +[1.597s] -- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/cmake/ament_cmake_export_dependencies-extras.cmake +[1.597s] -- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/cmake/rj_convertConfig.cmake +[1.597s] -- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/cmake/rj_convertConfig-version.cmake +[1.597s] -- Installing: /root/robocup-software/install/rj_convert/share/rj_convert/package.xml +[1.598s] Invoked command in '/root/robocup-software/build/rj_convert' returned '0': CMAKE_PREFIX_PATH=/opt/ros/humble /usr/bin/cmake --install /root/robocup-software/build/rj_convert diff --git a/log/latest b/log/latest new file mode 120000 index 00000000000..b57d247c77c --- /dev/null +++ b/log/latest @@ -0,0 +1 @@ +latest_build \ No newline at end of file diff --git a/log/latest_build b/log/latest_build new file mode 120000 index 00000000000..80c417b50e6 --- /dev/null +++ b/log/latest_build @@ -0,0 +1 @@ +build_2025-01-30_16-31-53 \ No newline at end of file diff --git a/log/latest_mixin b/log/latest_mixin new file mode 120000 index 00000000000..f92a00c95f3 --- /dev/null +++ b/log/latest_mixin @@ -0,0 +1 @@ +mixin_2025-01-30_16-19-04 \ No newline at end of file diff --git a/log/mixin_2025-01-30_16-11-34/logger_all.log b/log/mixin_2025-01-30_16-11-34/logger_all.log new file mode 100644 index 00000000000..ef90dd6ac12 --- /dev/null +++ b/log/mixin_2025-01-30_16-11-34/logger_all.log @@ -0,0 +1,2 @@ +[0.052s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'mixin', 'show'] +[0.052s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='mixin', subverb_name='show', verb_parser=, verb_extension=, main=>, verb=None, mixin_name=None) diff --git a/log/mixin_2025-01-30_16-12-04/logger_all.log b/log/mixin_2025-01-30_16-12-04/logger_all.log new file mode 100644 index 00000000000..42b38751bb0 --- /dev/null +++ b/log/mixin_2025-01-30_16-12-04/logger_all.log @@ -0,0 +1,2 @@ +[0.055s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'mixin', 'show'] +[0.055s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='mixin', subverb_name='show', verb_parser=, verb_extension=, main=>, verb=None, mixin_name=None) diff --git a/log/mixin_2025-01-30_16-13-08/logger_all.log b/log/mixin_2025-01-30_16-13-08/logger_all.log new file mode 100644 index 00000000000..e7680778cb4 --- /dev/null +++ b/log/mixin_2025-01-30_16-13-08/logger_all.log @@ -0,0 +1,2 @@ +[0.058s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'mixin', 'add', 'debug_flags', 'file:///root/robocup-software/mixin/debug_flags.meta.yaml'] +[0.058s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='mixin', subverb_name='add', verb_parser=, verb_extension=, main=>, name='debug_flags', url='file:///root/robocup-software/mixin/debug_flags.meta.yaml') diff --git a/log/mixin_2025-01-30_16-13-09/logger_all.log b/log/mixin_2025-01-30_16-13-09/logger_all.log new file mode 100644 index 00000000000..74498c863ae --- /dev/null +++ b/log/mixin_2025-01-30_16-13-09/logger_all.log @@ -0,0 +1,6 @@ +[0.044s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'mixin', 'add', 'rel_debug', 'file:///root/robocup-software/mixin/rel_debug.meta.yaml'] +[0.044s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='mixin', subverb_name='add', verb_parser=, verb_extension=, main=>, name='rel_debug', url='file:///root/robocup-software/mixin/rel_debug.meta.yaml') +[0.046s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'mixin', 'add', 'perf_flags', 'file:///root/robocup-software/mixin/perf_flags.meta.yaml'] +[0.046s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='mixin', subverb_name='add', verb_parser=, verb_extension=, main=>, name='perf_flags', url='file:///root/robocup-software/mixin/perf_flags.meta.yaml') +[0.044s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'mixin', 'add', 'ci_silent', 'file:///root/robocup-software/mixin/ci_silent.meta.yaml'] +[0.044s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='mixin', subverb_name='add', verb_parser=, verb_extension=, main=>, name='ci_silent', url='file:///root/robocup-software/mixin/ci_silent.meta.yaml') diff --git a/log/mixin_2025-01-30_16-13-12/logger_all.log b/log/mixin_2025-01-30_16-13-12/logger_all.log new file mode 100644 index 00000000000..fc6139a6a0c --- /dev/null +++ b/log/mixin_2025-01-30_16-13-12/logger_all.log @@ -0,0 +1,2 @@ +[0.052s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'mixin', 'show'] +[0.052s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='mixin', subverb_name='show', verb_parser=, verb_extension=, main=>, verb=None, mixin_name=None) diff --git a/log/mixin_2025-01-30_16-13-18/logger_all.log b/log/mixin_2025-01-30_16-13-18/logger_all.log new file mode 100644 index 00000000000..354e3ffa827 --- /dev/null +++ b/log/mixin_2025-01-30_16-13-18/logger_all.log @@ -0,0 +1,2 @@ +[0.062s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'mixin', 'add', 'debug_flags', 'file:///root/robocup-software/mixin/debug_flags.meta.yaml'] +[0.063s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='mixin', subverb_name='add', verb_parser=, verb_extension=, main=>, name='debug_flags', url='file:///root/robocup-software/mixin/debug_flags.meta.yaml') diff --git a/log/mixin_2025-01-30_16-13-23/logger_all.log b/log/mixin_2025-01-30_16-13-23/logger_all.log new file mode 100644 index 00000000000..20cb1066fbc --- /dev/null +++ b/log/mixin_2025-01-30_16-13-23/logger_all.log @@ -0,0 +1,2 @@ +[0.053s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'mixin', 'show'] +[0.053s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='mixin', subverb_name='show', verb_parser=, verb_extension=, main=>, verb=None, mixin_name=None) diff --git a/log/mixin_2025-01-30_16-13-40/logger_all.log b/log/mixin_2025-01-30_16-13-40/logger_all.log new file mode 100644 index 00000000000..5292f624386 --- /dev/null +++ b/log/mixin_2025-01-30_16-13-40/logger_all.log @@ -0,0 +1,2 @@ +[0.051s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'mixin', 'show'] +[0.051s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='mixin', subverb_name='show', verb_parser=, verb_extension=, main=>, verb=None, mixin_name=None) diff --git a/log/mixin_2025-01-30_16-14-22/logger_all.log b/log/mixin_2025-01-30_16-14-22/logger_all.log new file mode 100644 index 00000000000..87b150bbb51 --- /dev/null +++ b/log/mixin_2025-01-30_16-14-22/logger_all.log @@ -0,0 +1,2 @@ +[0.060s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'mixin', 'list'] +[0.060s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='mixin', subverb_name='list', verb_parser=, verb_extension=, main=>, name=None) diff --git a/log/mixin_2025-01-30_16-15-48/logger_all.log b/log/mixin_2025-01-30_16-15-48/logger_all.log new file mode 100644 index 00000000000..9c03531edf6 --- /dev/null +++ b/log/mixin_2025-01-30_16-15-48/logger_all.log @@ -0,0 +1,2 @@ +[0.060s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'mixin', 'update'] +[0.060s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='mixin', subverb_name='update', verb_parser=, verb_extension=, main=>, name=None) diff --git a/log/mixin_2025-01-30_16-18-50/logger_all.log b/log/mixin_2025-01-30_16-18-50/logger_all.log new file mode 100644 index 00000000000..d91ff77367c --- /dev/null +++ b/log/mixin_2025-01-30_16-18-50/logger_all.log @@ -0,0 +1,2 @@ +[0.049s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'mixin', 'list'] +[0.049s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='mixin', subverb_name='list', verb_parser=, verb_extension=, main=>, name=None) diff --git a/log/mixin_2025-01-30_16-18-54/logger_all.log b/log/mixin_2025-01-30_16-18-54/logger_all.log new file mode 100644 index 00000000000..e02cb36c77a --- /dev/null +++ b/log/mixin_2025-01-30_16-18-54/logger_all.log @@ -0,0 +1,2 @@ +[0.048s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'mixin', 'remove', 'ci_silent'] +[0.048s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='mixin', subverb_name='remove', verb_parser=, verb_extension=, main=>, name='ci_silent') diff --git a/log/mixin_2025-01-30_16-18-58/logger_all.log b/log/mixin_2025-01-30_16-18-58/logger_all.log new file mode 100644 index 00000000000..972ebb8d01b --- /dev/null +++ b/log/mixin_2025-01-30_16-18-58/logger_all.log @@ -0,0 +1,2 @@ +[0.054s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'mixin', 'remove', 'debug_flags'] +[0.054s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='mixin', subverb_name='remove', verb_parser=, verb_extension=, main=>, name='debug_flags') diff --git a/log/mixin_2025-01-30_16-19-01/logger_all.log b/log/mixin_2025-01-30_16-19-01/logger_all.log new file mode 100644 index 00000000000..27e89b806e7 --- /dev/null +++ b/log/mixin_2025-01-30_16-19-01/logger_all.log @@ -0,0 +1,2 @@ +[0.048s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'mixin', 'remove', 'perf_flags'] +[0.048s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='mixin', subverb_name='remove', verb_parser=, verb_extension=, main=>, name='perf_flags') diff --git a/log/mixin_2025-01-30_16-19-04/logger_all.log b/log/mixin_2025-01-30_16-19-04/logger_all.log new file mode 100644 index 00000000000..a7c866d8c78 --- /dev/null +++ b/log/mixin_2025-01-30_16-19-04/logger_all.log @@ -0,0 +1,2 @@ +[0.050s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'mixin', 'remove', 'rel_debug'] +[0.050s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='mixin', subverb_name='remove', verb_parser=, verb_extension=, main=>, name='rel_debug') diff --git a/mixin/debug_flags.meta.yaml b/mixin/debug_flags.meta.yaml index 701afeeea7e..1fc9da78c59 100644 --- a/mixin/debug_flags.meta.yaml +++ b/mixin/debug_flags.meta.yaml @@ -1,4 +1,4 @@ -debug_flags: +build: cmake-args: - "-DCMAKE_BUILD_TYPE=Debug" - "-DCMAKE_CXX_FLAGS_DEBUG=-Og -Werror=return-type -Werror=delete-non-virtual-dtor" diff --git a/src/rj_common/testing/rj_common_convert_test.cpp b/src/rj_common/testing/rj_common_convert_test.cpp index 9ee34bc249c..8740270f11d 100644 --- a/src/rj_common/testing/rj_common_convert_test.cpp +++ b/src/rj_common/testing/rj_common_convert_test.cpp @@ -1,7 +1,7 @@ #include #include -#include +#include TEST(ROSConvert, time_lossless_convert) { test_lossless_convert_ros_value(builtin_interfaces::msg::Time(rclcpp::Time(123456))); diff --git a/src/rj_convert/CMakeLists.txt b/src/rj_convert/CMakeLists.txt index 7d0dc83064a..e38e5beb308 100644 --- a/src/rj_convert/CMakeLists.txt +++ b/src/rj_convert/CMakeLists.txt @@ -9,22 +9,31 @@ add_library(rj_convert INTERFACE) target_include_directories(rj_convert INTERFACE include) ament_target_dependencies(rj_convert INTERFACE rclcpp) -ament_export_targets(rj_convert HAS_LIBRARY_TARGET) ament_export_dependencies(rclcpp) -if(BUILD_TESTING) - find_package(ament_lint_auto REQUIRED) - ament_lint_auto_find_test_dependencies() - add_subdirectory(test) -endif() - # Install headers install(DIRECTORY include/ DESTINATION include/) -# Install the target +# Install the target (without EXPORT) install( TARGETS rj_convert INCLUDES DESTINATION include ) +if(BUILD_TESTING) + find_package(ament_lint_auto REQUIRED) + ament_lint_auto_find_test_dependencies() + + find_package(ament_cmake_gtest REQUIRED) + ament_add_gtest(test_rj_convert test/ros_convert_test.cpp) + + # Ensure tests find headers + target_include_directories(test_rj_convert PRIVATE include) + + # Link test with rj_convert and rclcpp + target_link_libraries(test_rj_convert rj_convert) + ament_target_dependencies(test_rj_convert rclcpp) + +endif() + ament_package() diff --git a/src/rj_convert/test/ros_convert_test.cpp b/src/rj_convert/test/ros_convert_test.cpp index 66247a3bec5..539bd908901 100644 --- a/src/rj_convert/test/ros_convert_test.cpp +++ b/src/rj_convert/test/ros_convert_test.cpp @@ -2,7 +2,7 @@ #include #include -#include +#include struct MockTime { using Msg = builtin_interfaces::msg::Time; diff --git a/src/rj_geometry/testing/geometry_conversions_test.cpp b/src/rj_geometry/testing/geometry_conversions_test.cpp index b5816459891..81d72c6f488 100644 --- a/src/rj_geometry/testing/geometry_conversions_test.cpp +++ b/src/rj_geometry/testing/geometry_conversions_test.cpp @@ -1,5 +1,5 @@ #include -#include +#include static rj_geometry_msgs::msg::Point make_ros_point() { return rj_geometry_msgs::build().x(1).y(2); diff --git a/src/soccer/src/soccer/planning/global_state.hpp b/src/soccer/src/soccer/planning/global_state.hpp index ddb380f9af3..259f16f8f8a 100644 --- a/src/soccer/src/soccer/planning/global_state.hpp +++ b/src/soccer/src/soccer/planning/global_state.hpp @@ -5,7 +5,7 @@ #include #include -#include +#include #include #include #include diff --git a/src/soccer/src/soccer/planning/tests/conversion_tests.cpp b/src/soccer/src/soccer/planning/tests/conversion_tests.cpp index da244418a9b..29bdcafa027 100644 --- a/src/soccer/src/soccer/planning/tests/conversion_tests.cpp +++ b/src/soccer/src/soccer/planning/tests/conversion_tests.cpp @@ -1,6 +1,6 @@ #include -#include +#include #include "planning/planner/motion_command.hpp" #include "planning/trajectory.hpp" diff --git a/src/soccer/testing/soccer/src/game_state_test.cpp b/src/soccer/testing/soccer/src/game_state_test.cpp index bc0de11699e..920156f1bf2 100644 --- a/src/soccer/testing/soccer/src/game_state_test.cpp +++ b/src/soccer/testing/soccer/src/game_state_test.cpp @@ -1,7 +1,7 @@ #include #include -#include +#include TEST(ROSConvertPlayState, play_state_lossless_convert) { PlayState mock_state = PlayState::ready_kickoff(true); diff --git a/src/soccer/testing/soccer/src/world_state_test.cpp b/src/soccer/testing/soccer/src/world_state_test.cpp index cf8edf43515..b7f09b702d3 100644 --- a/src/soccer/testing/soccer/src/world_state_test.cpp +++ b/src/soccer/testing/soccer/src/world_state_test.cpp @@ -3,7 +3,7 @@ #include #include -#include +#include RobotState get_random_robot_state() { std::random_device rd; diff --git a/src/util/analyze_clang_tidy.py b/util/analyze_clang_tidy.py similarity index 100% rename from src/util/analyze_clang_tidy.py rename to util/analyze_clang_tidy.py diff --git a/src/util/clang-format-diff.py b/util/clang-format-diff.py similarity index 100% rename from src/util/clang-format-diff.py rename to util/clang-format-diff.py diff --git a/src/util/clang-tidy-diff.py b/util/clang-tidy-diff.py similarity index 100% rename from src/util/clang-tidy-diff.py rename to util/clang-tidy-diff.py diff --git a/src/util/clang-tidy-to-junit.py b/util/clang-tidy-to-junit.py similarity index 100% rename from src/util/clang-tidy-to-junit.py rename to util/clang-tidy-to-junit.py diff --git a/src/util/docker-run b/util/docker-run similarity index 100% rename from src/util/docker-run rename to util/docker-run diff --git a/src/util/docker-setup b/util/docker-setup similarity index 100% rename from src/util/docker-setup rename to util/docker-setup diff --git a/src/util/docker/baseimage/Dockerfile b/util/docker/baseimage/Dockerfile similarity index 100% rename from src/util/docker/baseimage/Dockerfile rename to util/docker/baseimage/Dockerfile diff --git a/src/util/docker/notify_fail.sh b/util/docker/notify_fail.sh similarity index 100% rename from src/util/docker/notify_fail.sh rename to util/docker/notify_fail.sh diff --git a/src/util/docker/notify_fail_semaphore.sh b/util/docker/notify_fail_semaphore.sh similarity index 100% rename from src/util/docker/notify_fail_semaphore.sh rename to util/docker/notify_fail_semaphore.sh diff --git a/src/util/git-hooks/post-checkout b/util/git-hooks/post-checkout similarity index 100% rename from src/util/git-hooks/post-checkout rename to util/git-hooks/post-checkout diff --git a/src/util/git-hooks/post-merge b/util/git-hooks/post-merge similarity index 100% rename from src/util/git-hooks/post-merge rename to util/git-hooks/post-merge diff --git a/src/util/git-hooks/readme.md b/util/git-hooks/readme.md similarity index 100% rename from src/util/git-hooks/readme.md rename to util/git-hooks/readme.md diff --git a/src/util/git-setup b/util/git-setup similarity index 100% rename from src/util/git-setup rename to util/git-setup diff --git a/src/util/manual_control_connect.bash b/util/manual_control_connect.bash similarity index 100% rename from src/util/manual_control_connect.bash rename to util/manual_control_connect.bash diff --git a/src/util/mcast_route b/util/mcast_route similarity index 100% rename from src/util/mcast_route rename to util/mcast_route diff --git a/src/util/reformat_all.sh b/util/reformat_all.sh similarity index 100% rename from src/util/reformat_all.sh rename to util/reformat_all.sh diff --git a/src/util/requirements3.txt b/util/requirements3.txt similarity index 100% rename from src/util/requirements3.txt rename to util/requirements3.txt diff --git a/src/util/routes b/util/routes similarity index 100% rename from src/util/routes rename to util/routes diff --git a/src/util/run-clang-format.py b/util/run-clang-format.py similarity index 100% rename from src/util/run-clang-format.py rename to util/run-clang-format.py diff --git a/src/util/run-clang-tidy.py b/util/run-clang-tidy.py similarity index 100% rename from src/util/run-clang-tidy.py rename to util/run-clang-tidy.py diff --git a/src/util/run-cmake-format.py b/util/run-cmake-format.py similarity index 100% rename from src/util/run-cmake-format.py rename to util/run-cmake-format.py diff --git a/src/util/ubuntu-packages.txt b/util/ubuntu-packages.txt similarity index 100% rename from src/util/ubuntu-packages.txt rename to util/ubuntu-packages.txt diff --git a/src/util/ubuntu-setup b/util/ubuntu-setup similarity index 100% rename from src/util/ubuntu-setup rename to util/ubuntu-setup diff --git a/src/util/yapf-diff.py b/util/yapf-diff.py similarity index 100% rename from src/util/yapf-diff.py rename to util/yapf-diff.py