Skip to content

Commit

Permalink
Use make distcheck in place of make check.
Browse files Browse the repository at this point in the history
  • Loading branch information
lhmouse committed Nov 21, 2018
1 parent 39ff916 commit c8c8434
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
5 changes: 2 additions & 3 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,11 @@ build:
pull: true
shell: mingw$${arch}
commands:
- ./check_includes.sh
- mkdir -p m4
- autoreconf -ifv
- ./configure --disable-werror --disable-silent-rules $${_options}
- make -j$(nproc)
- ./check_includes.sh
- make -j$(nproc) check
- make -j$(nproc) distcheck

notify:
irc:
Expand Down
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ compiler:
- clang

install:
- ./check_includes.sh
- mkdir -p m4
- autoreconf -ifv
- test "${CXX#*clang}" == "${CXX}" || _options+=" --disable-werror"
- ./configure --disable-silent-rules ${_options}
- make -j$(nproc)
- make -j$(nproc) distcheck

script:
- ./check_includes.sh
- make -j$(nproc) check
- exit 0

notifications:
irc:
Expand Down
3 changes: 3 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ BUILT_SOURCES = \
CLEANFILES = \
asteria/src/precompiled.hpp.gch

noinst_HEADERS = \
test/_test_init.hpp

noinst_LTLIBRARIES = \
lib/librocket.la

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AC_INIT([asteria], [0.1], [[email protected]], [asteria], [https://github.com/lhmouse/asteria])
AC_CONFIG_SRCDIR([src])
AC_CONFIG_SRCDIR([asteria/src])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])

Expand Down

0 comments on commit c8c8434

Please sign in to comment.