-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix (#76) * Update vehicle_computers.md (#78) #77 fix * 81/bug/rosdep-dockerfile-fix (#82) * Fix small bug in rosdep dockerfile related to hardcoded art_dev_meta line. * Fix #2 * Added recursive flag to clone in script * Many fixes for agx systems (#84) * Many fixes for agx systems * Small fixes * pre-commit --------- Co-authored-by: harryzhang1018 <[email protected]> Co-authored-by: Aaron Young <[email protected]>
- Loading branch information
1 parent
6da9ed3
commit 4fcc92f
Showing
5 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# syntax = devthefuture/dockerfile-x | ||
# SPDX-License-Identifier: MIT | ||
|
||
# Syntax provided by the devthefuture/dockerfile-x project | ||
# Will copy in the base configuration for the build | ||
INCLUDE ./docker/common/base.dockerfile | ||
|
||
# Snippets | ||
INCLUDE ./docker/snippets/agx.dockerfile | ||
INCLUDE ./docker/snippets/rosdep.dockerfile | ||
|
||
# Will copy in other common configurations for this build | ||
INCLUDE ./docker/common/common.dockerfile | ||
|
||
# Complete the build | ||
INCLUDE ./docker/common/final.dockerfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
cmake_minimum_required(VERSION 3.8) | ||
project(art_oak_meta) | ||
|
||
find_package(ament_cmake REQUIRED) | ||
ament_package() |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0"?> | ||
<?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>art_oak_meta</name> | ||
<version>1.0.0</version> | ||
<description>A package to aggregate all packages for the ART-Oak vehicle.</description> | ||
<maintainer email="[email protected]">TODO</maintainer> | ||
<license>TODO: License declaration</license> | ||
|
||
<exec_depend>art_common_meta</exec_depend> | ||
|
||
<exec_depend>art_launch</exec_depend> | ||
<exec_depend>localization_py</exec_depend> | ||
<exec_depend>path_planning</exec_depend> | ||
<exec_depend>control</exec_depend> | ||
<exec_depend>chrono_ros_interfaces</exec_depend> | ||
<!-- add sensing --> | ||
</package> |