Skip to content
Snippets Groups Projects
Commit a0647c0c authored by Marek Vavruša's avatar Marek Vavruša
Browse files

build: bootstrap script + cache for faster rebuilds

parent c38b7c94
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,7 @@ before_script: ...@@ -13,7 +13,7 @@ before_script:
- pip install --user travis -r tests/pydnstest/requirements.txt - pip install --user travis -r tests/pydnstest/requirements.txt
- pip install --user travis cpp-coveralls - pip install --user travis cpp-coveralls
script: script:
- autoreconf -i - ./bootstrap
- ./configure --enable-integration-tests --enable-code-coverage - ./configure --enable-integration-tests --enable-code-coverage
- make - make
- make check - make check
...@@ -25,3 +25,4 @@ cache: ...@@ -25,3 +25,4 @@ cache:
directories: directories:
- ${HOME}/fakeroot - ${HOME}/fakeroot
- ${HOME}/.pip-cache - ${HOME}/.pip-cache
- .autom4te.cache
#!/bin/sh
set -e
aclocal -I m4 --install
libtoolize --copy
autoheader
automake --copy --add-missing
autoconf
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment