forked from libgeos/geos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone-1.0.yml
36 lines (33 loc) · 848 Bytes
/
.drone-1.0.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# This is for the dronie 1.0 agent
# https://docs.drone.io/user-guide/pipeline/steps/ https://docs.drone.io/user-guide/pipeline/migrating/
# See https://git.osgeo.org/gitea/geos/geos-docker
test-image: &test-image docker.osgeo.org/geos/build-test:alpine
kind: pipeline
name: default
clone:
image: plugins/git
depth: 50
recursive: false
steps:
- name: build
image: *test-image
pull: always
commands:
- mkdir build
- cd build
- cmake --version
- CXXFLAGS="-O0" cmake ..
- make V=0
- name: check
image: *test-image
commands:
- cd build
- ctest --output-on-failure .
# - name: docs
# image: *test-image
# commands:
# - make doxygen-checked
# - name: valgrindcheck
# image: *test-image
# commands:
# - CXXFLAGS="-O0" make valgrindcheck V=0