This repository was archived by the owner on Jul 8, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +32
-3
lines changed
Expand file tree Collapse file tree 2 files changed +32
-3
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,11 @@ language: cpp
44
55env :
66 matrix :
7- - OS_TYPE=debian9 CMAKE_BUILD_TYPE=Debug SONAR_SCANNER=OFF COVERALLS=OFF NON_STOCK_CPPZMQ=ON
8- - OS_TYPE=debian8 CMAKE_BUILD_TYPE=Debug SONAR_SCANNER=ON COVERALLS=ON NON_STOCK_CPPZMQ=OFF
9- - OS_TYPE=debian7 CMAKE_BUILD_TYPE=Debug SONAR_SCANNER=OFF COVERALLS=OFF NON_STOCK_CPPZMQ=ON
7+ - OS_TYPE=debian10 CMAKE_BUILD_TYPE=Release SONAR_SCANNER=OFF COVERALLS=OFF NON_STOCK_CPPZMQ=ON
8+ - OS_TYPE=debian10 CMAKE_BUILD_TYPE=Debug SONAR_SCANNER=OFF COVERALLS=OFF NON_STOCK_CPPZMQ=ON
9+ - OS_TYPE=debian9 CMAKE_BUILD_TYPE=Debug SONAR_SCANNER=OFF COVERALLS=OFF NON_STOCK_CPPZMQ=ON
10+ - OS_TYPE=debian8 CMAKE_BUILD_TYPE=Debug SONAR_SCANNER=ON COVERALLS=ON NON_STOCK_CPPZMQ=OFF
11+ - OS_TYPE=debian7 CMAKE_BUILD_TYPE=Debug SONAR_SCANNER=OFF COVERALLS=OFF NON_STOCK_CPPZMQ=ON
1012
1113notifications :
1214 email : false
Original file line number Diff line number Diff line change 1+ FROM debian:buster
2+
3+ ARG APP_UID=2000
4+
5+ ARG APP_GID=2000
6+
7+ MAINTAINER TANGO Controls team <tango@esrf.fr>
8+
9+ RUN apt-get update && apt-get install -y apt-utils
10+
11+ RUN apt-get install -y build-essential cmake
12+
13+ RUN apt-get install -y curl lsb-release
14+
15+ RUN apt-get install -y omniidl libomniorb4-dev libcos4-dev libomnithread4-dev libzmq3-dev
16+
17+ RUN apt-get install -y python2
18+
19+ RUN groupadd -g "$APP_GID" tango
20+
21+ RUN useradd -u "$APP_UID" -g "$APP_GID" -ms /bin/bash tango
22+
23+ ENV PKG_CONFIG_PATH=/home/tango/lib/pkgconfig
24+
25+ USER tango
26+
27+ WORKDIR /home/tango
You can’t perform that action at this time.
0 commit comments