Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wolf_scripts
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile_robotics
wolf_projects
wolf_scripts
Commits
dfacab13
Commit
dfacab13
authored
3 years ago
by
Joan Vallvé Navarro
Browse files
Options
Downloads
Patches
Plain Diff
https git url
parent
3575419b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+2
-0
2 additions, 0 deletions
.gitignore
install_wolf.sh
+12
-10
12 additions, 10 deletions
install_wolf.sh
with
14 additions
and
10 deletions
.gitignore
0 → 100644
+
2
−
0
View file @
dfacab13
/.cproject
/.project
This diff is collapsed.
Click to expand it.
install_wolf.sh
+
12
−
10
View file @
dfacab13
...
...
@@ -18,6 +18,7 @@ fi
RUN_PATH
=
$PWD
# UBUNTU
sudo
apt
install
-y
lsb-core
UBUNTU_DISTRO
=
$(
lsb_release
-rs
)
;
if
[
$UBUNTU_DISTRO
==
"16.04"
]
;
then
if
[
$VERBOSE
==
"true"
]
;
then
...
...
@@ -52,7 +53,8 @@ fi
if
[
$VERBOSE
==
"true"
]
;
then
echo
"Installing dependencies via apt install..."
fi
sudo
apt
install
-y
dh-autoreconf cmake build-essential libgoogle-glog-dev libgflags-dev libatlas-base-dev libsuitesparse-dev git libboost-all-dev libyaml-cpp-dev wget unzip
sudo
apt
install
-y
git wget unzip dh-autoreconf cmake build-essential libgoogle-glog-dev libgflags-dev libatlas-base-dev libsuitesparse-dev git libboost-all-dev libyaml-cpp-dev wget unzip
# Eigen
...
...
@@ -128,7 +130,7 @@ if [ $VERBOSE == "true" ]; then
echo
"Cloning wolf core..."
fi
cd
$WOLF_PATH
git clone
ssh://git@
gitlab.iri.upc.edu
:2202
/mobile_robotics/wolf_projects/wolf_lib/wolf.git
git clone
https://
gitlab.iri.upc.edu/mobile_robotics/wolf_projects/wolf_lib/wolf.git
cd
wolf
git pull
...
...
@@ -160,7 +162,7 @@ if [ $INSTALL_IMU == "y" ]; then
echo
"Cloning plugin imu..."
fi
cd
$WOLF_PATH
git clone
ssh://git@
gitlab.iri.upc.edu
:2202
/mobile_robotics/wolf_projects/wolf_lib/plugins/imu.git
git clone
https://
gitlab.iri.upc.edu/mobile_robotics/wolf_projects/wolf_lib/plugins/imu.git
cd
imu
git pull
...
...
@@ -196,7 +198,7 @@ if [ $INSTALL_GNSS == "y" ]; then
echo
"Installing plugin gnss dependencies..."
fi
cd
$DEPS_PATH
git clone
ssh://git@
gitlab.iri.upc.edu
:2202
/mobile_robotics/gauss_project/gnss_utils.git
git clone
https://
gitlab.iri.upc.edu/mobile_robotics/gauss_project/gnss_utils.git
cd
gnss_utils
git submodule update
--init
mkdir
-p
build
&&
cd
build
...
...
@@ -209,7 +211,7 @@ if [ $INSTALL_GNSS == "y" ]; then
echo
"Cloning plugin gnss..."
fi
cd
$WOLF_PATH
git clone
ssh://git@
gitlab.iri.upc.edu
:2202
/mobile_robotics/wolf_projects/wolf_lib/plugins/gnss.git
git clone
https://
gitlab.iri.upc.edu/mobile_robotics/wolf_projects/wolf_lib/plugins/gnss.git
cd
gnss
git pull
...
...
@@ -286,7 +288,7 @@ if [ $INSTALL_LASER == "y" ]; then
fi
cd
$DEPS_PATH
sudo
ldconfig
git clone
ssh://git@
gitlab.iri.upc.edu
:2202
/labrobotica/algorithms/laser_scan_utils.git
git clone
https://
gitlab.iri.upc.edu/labrobotica/algorithms/laser_scan_utils.git
cd
laser_scan_utils
mkdir
-p
build
&&
cd
build
cmake
-DCMAKE_BUILD_TYPE
=
Release ..
...
...
@@ -300,7 +302,7 @@ if [ $INSTALL_LASER == "y" ]; then
fi
cd
$WOLF_PATH
sudo
ldconfig
git clone
ssh://git@
gitlab.iri.upc.edu
:2202
/mobile_robotics/wolf_projects/wolf_lib/plugins/laser.git
git clone
https://
gitlab.iri.upc.edu/mobile_robotics/wolf_projects/wolf_lib/plugins/laser.git
cd
laser
git pull
...
...
@@ -357,7 +359,7 @@ if [ $INSTALL_VISION == "y" ]; then
echo
"Cloning plugin vision..."
fi
cd
$WOLF_PATH
git clone
ssh://git@
gitlab.iri.upc.edu
:2202
/mobile_robotics/wolf_projects/wolf_lib/plugins/vision.git
git clone
https://
gitlab.iri.upc.edu/mobile_robotics/wolf_projects/wolf_lib/plugins/vision.git
cd
vision
git pull
...
...
@@ -406,7 +408,7 @@ if [ $INSTALL_VISION == "y" ]; then
echo
"Cloning plugin apriltag..."
fi
cd
$WOLF_PATH
git clone
ssh://git@
gitlab.iri.upc.edu
:2202
/mobile_robotics/wolf_projects/wolf_lib/plugins/apriltag.git
git clone
https://
gitlab.iri.upc.edu/mobile_robotics/wolf_projects/wolf_lib/plugins/apriltag.git
cd
apriltag
git pull
...
...
@@ -448,7 +450,7 @@ if [ $INSTALL_IMU == "y" ]; then
echo
"Cloning plugin bodydynamics..."
fi
cd
$WOLF_PATH
git clone
ssh://git@
gitlab.iri.upc.edu
:2202
/mobile_robotics/wolf_projects/wolf_lib/plugins/bodydynamics.git
git clone
https://
gitlab.iri.upc.edu/mobile_robotics/wolf_projects/wolf_lib/plugins/bodydynamics.git
cd
bodydynamics
git pull
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment