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

Commit

Permalink
Enable Travis Debian 7 (#417)
Browse files Browse the repository at this point in the history
* Download and install CMake 3.10 for Debian 7
* Install procps on Debian 7 container
  • Loading branch information
bourtemb authored Dec 5, 2017
1 parent 713e0b3 commit d846dc3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
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

0 comments on commit d846dc3

Please sign in to comment.