Skip to content

Commit be6679f

Browse files
committed
Add Ubuntu-based Docker image for GitLab CI build
1 parent 6afba2b commit be6679f

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

.gitlab-ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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

tests/docker/Dockerfile renamed to tests/docker/pdalc-build-deps_alpine/Dockerfile

File renamed without changes.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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/*

0 commit comments

Comments
 (0)