Skip to content
This repository has been archived by the owner on Jul 8, 2022. It is now read-only.

Enable Travis debian7 #417

Merged
merged 2 commits into from
Dec 5, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ env:
matrix:
- OS_TYPE=debian8 CMAKE_BUILD_TYPE=DEBUG
- OS_TYPE=debian8 CMAKE_BUILD_TYPE=RELEASE
# - OS_TYPE=debian7 CMAKE_BUILD_TYPE=RELEASE
- OS_TYPE=debian7 CMAKE_BUILD_TYPE=RELEASE
- OS_TYPE=debian7 CMAKE_BUILD_TYPE=DEBUG
# - OS_TYPE=win32
# etc

Expand Down
14 changes: 12 additions & 2 deletions .travis/debian7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,19 @@ MAINTAINER TANGO Controls team <tango@esrf.fr>

RUN apt-get update && apt-get install -y apt-utils

RUN apt-get update && apt-get install -y build-essential cmake
RUN apt-get install -y build-essential

RUN apt-get update && apt-get install -y omniidl libomniorb4-dev libcos4-dev libomnithread3-dev libzmq3-dev
RUN apt-get install -y procps

RUN apt-get install -y wget

RUN wget --no-check-certificate https://cmake.org/files/v3.10/cmake-3.10.0-Linux-x86_64.sh -O /tmp/cmake-install.sh

RUN chmod +x /tmp/cmake-install.sh

RUN /tmp/cmake-install.sh --skip-license --exclude-subdir

RUN apt-get install -y omniidl libomniorb4-dev libcos4-dev libomnithread3-dev libzmq3-dev

RUN groupadd -g "$APP_GID" tango

Expand Down