File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,12 @@ services:
5
5
6
6
matrix :
7
7
include :
8
+ - arch : amd64
9
+ env : DOCKER_IMAGE=ros:melodic-perception-bionic SPINNAKER_VERSION=2.0.0.147
8
10
- arch : amd64
9
11
env : DOCKER_IMAGE=ros:kinetic-perception-xenial SPINNAKER_VERSION=2.0.0.147
10
12
- arch : amd64
11
- env : DOCKER_IMAGE=ros:melodic-perception-bionic SPINNAKER_VERSION=2.0 .0.147
13
+ env : DOCKER_IMAGE=ros:melodic-perception-bionic SPINNAKER_VERSION=2.2 .0.48
12
14
- arch : amd64
13
15
env : DOCKER_IMAGE=ros:kinetic-perception-xenial SPINNAKER_VERSION=1.24.0.60
14
16
- arch : amd64
Original file line number Diff line number Diff line change @@ -8,17 +8,23 @@ export DEBIAN_FRONTEND=noninteractive
8
8
# install basic packages
9
9
apt-get update
10
10
apt-get install -q -y --no-install-recommends \
11
- build-essential tree wget dirmngr gnupg2 vim nano git debconf-utils libunwind-dev
11
+ build-essential tree wget dirmngr gnupg2 vim nano git debconf-utils libunwind-dev iputils-ping dialog apt-utils
12
12
13
13
wget https://coe.northeastern.edu/fieldrobotics/spinnaker_sdk_archive/spinnaker-$SPINNAKER_VERSION -$SPINNAKER_LINUX_ARCH -pkg.tar.gz -nv
14
14
15
15
tar -zxvf spinnaker-$SPINNAKER_VERSION -$SPINNAKER_LINUX_ARCH -pkg.tar.gz
16
16
cd spinnaker-$SPINNAKER_VERSION -$SPINNAKER_LINUX_ARCH
17
17
18
+ # fix issue with 'logname' command on docker, required by spinnaker 2.2.0.48
19
+ mv /usr/bin/logname /usr/bin/logname_old
20
+ echo " echo root" > /usr/bin/logname
21
+ chmod +x /usr/bin/logname
22
+
18
23
# auto accept spinnaker license agreements
19
24
echo libspinnaker libspinnaker/present-flir-eula note ' ' | debconf-set-selections
20
25
echo libspinnaker libspinnaker/accepted-flir-eula boolean true | debconf-set-selections
21
26
22
27
dpkg -i * .deb
23
28
24
- cd ..
29
+ cd ..
30
+
You can’t perform that action at this time.
0 commit comments