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

travis: no lzma support in osx, back to tgz

parent c68144c3
Branches
Tags
No related merge requests found
......@@ -13,7 +13,7 @@ install -d ${PREFIX}/{lib,libexec,include,bin,sbin,man,share,etc,info,doc,var}
[ ! -d .depend ] && mkdir .depend; cd .depend
# platform-specific
DEPEND_CACHE="https://dl.dropboxusercontent.com/u/2255176/resolver-${TRAVIS_OS_NAME}-cache.tar.lzma"
DEPEND_CACHE="https://dl.dropboxusercontent.com/u/2255176/resolver-${TRAVIS_OS_NAME}-cache.tgz"
PIP_PKGS="${TRAVIS_BUILD_DIR}/tests/pydnstest/requirements.txt cpp-coveralls"
if [ "${TRAVIS_OS_NAME}" == "osx" ]; then
brew install --force makedepend
......@@ -21,9 +21,9 @@ if [ "${TRAVIS_OS_NAME}" == "osx" ]; then
brew link --overwrite python
pip install --upgrade pip
pip install -r ${PIP_PKGS}
if wget "${DEPEND_CACHE}" -o cache.tar.lzma; then
if wget "${DEPEND_CACHE}" -o cache.tgz; then
echo "extracting prebuilt dependencies from ${DEPEND_CACHE}"
tar -x -C ${HOME} -f cache.tar.lzma || true
tar -x -C ${HOME} -f cache.tgz || true
fi
fi
if [ "${TRAVIS_OS_NAME}" == "linux" ]; then
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment