File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed
Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -125,23 +125,25 @@ test-x64-windows-debug:
125125 - build/$CI_JOB_NAME/lib/
126126 - build/$CI_JOB_NAME/include/*.h
127127
128- build-x64-linux-release :
128+ build-x64-linux-release-ubuntu :
129129 << : *build-linux
130130 tags :
131131 - linux
132132 - pdal
133133 - docker
134134 - release
135+ - ubuntu
135136 before_script :
136137 - export BUILD_TYPE=Release
137138
138- .build-x64-linux-debug :
139+ .build-x64-linux-debug-ubuntu :
139140 << : *build-linux
140141 tags :
141142 - linux
142143 - pdal
143144 - docker
144145 - debug
146+ - ubuntu
145147 before_script :
146148 - export BUILD_TYPE=Debug
147149
File renamed without changes.
Original file line number Diff line number Diff line change 1+ FROM pdal/ubuntu
2+ MAINTAINER Jaime Soto <
[email protected] >
3+
4+ RUN \
5+ apt-get update && apt-get install -y --no-install-recommends \
6+ build-essential \
7+ cmake \
8+ lcov \
9+ && apt-get clean \
10+ && rm -rf /var/lib/apt/lists/*
You can’t perform that action at this time.
0 commit comments