Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddrysdale committed Nov 4, 2015
1 parent efb71d9 commit 0b5c52a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ syntax: glob
*.exe
*.obj
*.dll
*.gcno
*.gcda

Makefile
CMakeCache.txt
Expand Down
16 changes: 7 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ matrix:
- os: linux
compiler: clang
env: BUILD_TYPE=ubsan tbs_arch=x64
# - os: linux
# compiler: clang
# env: BUILD_TYPE=asan tbs_arch=x64
- os: linux
compiler: clang
env: BUILD_TYPE=asan tbs_arch=x64
- os: linux
compiler: gcc
env: BUILD_TYPE=coverage tbs_arch=x64
Expand Down Expand Up @@ -68,17 +68,15 @@ before_install:
sudo apt-get -y install gcc-multilib;
sudo apt-get -y install g++-multilib;
fi;
pip install --user 'requests[security]';
pip install --user cpp-coveralls;
fi

- if [ "$TRAVIS_OS_NAME" = "osx" ];
then
brew install nasm;
fi

install:
- pip install --user 'requests[security]'
- pip install --user cpp-coveralls

before_script:
- if [ "$TRAVIS_OS_NAME" = "linux" ];
then
Expand Down Expand Up @@ -107,7 +105,7 @@ script:
grep WEBP src/config.h;
make;
nm src/gd_webp.o;
make check || true;
make check;
fi
- if [ "$TRAVIS_OS_NAME" = "osx" ];
then
Expand All @@ -116,7 +114,7 @@ script:
fi
- if [ "$BUILD_TYPE" = "coverage" ];
then
cpp-coveralls --gcov-options '\-lp';
cpp-coveralls --exclude tests --gcov-options '\-lp';
fi

addons:
Expand Down

0 comments on commit 0b5c52a

Please sign in to comment.