Skip to content

Commit 8410a0e

Browse files
committed
fix build ubuntu 19
1 parent 6c70475 commit 8410a0e

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

.github/workflows/build_test_18.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ jobs:
4848
- name: Install System Deps on Melodic
4949
if: ${{ matrix.config.container == 'ros:melodic-ros-base-bionic' }}
5050
run: |
51-
sudo apt-get install python3-vcstool python-catkin-tools ros-$ROS_DISTRO-cmake-modules protobuf-compiler autoconf git rsync -y
51+
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
52+
sudo apt update
53+
sudo apt install python3-vcstool python-catkin-tools ros-$ROS_DISTRO-cmake-modules protobuf-compiler autoconf git rsync gcc-9 g++-9 -y
5254
5355
- name: Release Build Test
5456
working-directory:

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
![Ubuntu 18.04 + ROS Melodic](https://github.com/ethz-asl/dynablox/actions/workflows/build_test_18.yml/badge.svg) ![Ubuntu 20.04 + ROS Noetic](https://github.com/ethz-asl/dynablox/actions/workflows/build_test_20.yml/badge.svg)
2+
13
# Dynablox
24
A map-based Approach for Real-time detection of diverse dynamic objects in complex environments.
35

@@ -49,6 +51,13 @@ If you find this package useful for your research, please consider citing our pa
4951
catkin config --merge-devel
5052
```
5153

54+
2. If installing on `Ubuntu 18.04` make sure to install GCC>9:
55+
```
56+
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
57+
sudo apt update
58+
sudo apt install gcc-9 g++-9
59+
```
60+
5261
3. Install system dependencies:
5362
```bash
5463
sudo apt-get install python3-vcstool python3-catkin-tools ros-$ROS_DISTRO-cmake-modules protobuf-compiler autoconf git rsync -y
@@ -80,7 +89,9 @@ roscd dynablox_ros/scripts
8089
./download_doals_data.sh /home/$USER/data/DOALS
8190
```
8291

83-
TODO: We further collect a [new dataset](todo) featuring diverse dynamic objects in complex scenes.
92+
> __note__ The dataset will be released shortly!
93+
94+
We further collect a new dataset featuring diverse dynamic objects in complex scenes.
8495
To download the processed ready-to-run data for our demos, use the provided script:
8596
```bash
8697
roscd dynablox_ros/scripts

0 commit comments

Comments
 (0)