Skip to content

Commit

Permalink
[automake] Enable silent rule, use in Dronie and Gitlab-CI
Browse files Browse the repository at this point in the history
  • Loading branch information
strk committed May 25, 2019
1 parent 89a3277 commit a5bf88a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .drone-1.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ steps:
commands:
- ./autogen.sh
- CXXFLAGS="-O0" ./configure
- make
- make V=0
- name: check
image: *test-image
commands:
- CXXFLAGS="-O0" make check
- CXXFLAGS="-O0" make check V=0
4 changes: 2 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ test:
script:
- ./autogen.sh
- ./configure
- make
- make check
- make V=0
- make check V=0
- install -m 755 /bin/true /usr/local/bin/git2cl
- make distcheck
1 change: 1 addition & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ AC_MSG_RESULT(["$CAPI_VERSION"])

AM_INIT_AUTOMAKE([geos], [$VERSION], [no-define])
AM_MAINTAINER_MODE
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES])
AC_CONFIG_HEADERS([include/config.h])
AC_PROG_CC

Expand Down

0 comments on commit a5bf88a

Please sign in to comment.