-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
making the base_repos.yaml smaller and running a limited catkin build…
… on them, also will later build visualization and other repos
- Loading branch information
Showing
8 changed files
with
1,348 additions
and
366 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
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,25 @@ | ||
#!/bin/bash | ||
set -e | ||
set -x | ||
|
||
ls -l | ||
ls -l ros/bin | ||
ROS_DEST=`pwd`/ros source underlay_ws/env.sh | ||
|
||
WS=`pwd`/base_ws/src | ||
echo $WS | ||
|
||
cd $WS/.. | ||
echo "#####################" | ||
pwd | ||
source ../underlay_ws/install/setup.bash | ||
catkin init | ||
catkin config --install --cmake-args -DCMAKE_BUILD_TYPE=Release -Wno-deprecated -DCATKIN_ENABLE_TESTING=False | ||
echo $PATH | ||
echo $LD_LIBRARY_PATH | ||
rospack list | ||
|
||
catkin build ros_comm | ||
source install/setup.bash | ||
rospack list | ||
# TODO(lucasw) run tests |
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,17 @@ | ||
#!/bin/bash | ||
# TODO(lucasw) replace the below with submodules | ||
# export PATH=$PATH:/usr/local/bin | ||
set -e | ||
set -x | ||
|
||
WS=`pwd`/base_ws/src | ||
echo $WS | ||
mkdir $WS -p | ||
|
||
# TODO(lucasw) replace these git clones with vcs | ||
# packages that need to be cmake installed, and are ros packages in a catkin workspace | ||
cd $WS | ||
vcs import --input base_repos.yaml --retry 10 | ||
|
||
# ROSCONSOLE1=${ROSCONSOLE:-https://github.com/ros-o/rosconsole} | ||
# git clone $ROSCONSOLE1 |
Oops, something went wrong.