We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 803bc02 commit 75f0d7aCopy full SHA for 75f0d7a
.travis.yml
@@ -12,12 +12,16 @@ before_install:
12
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
13
brew update;
14
brew install openssl;
15
- brew link openssl --force;
16
fi
17
18
install:
19
- wget "https://github.com/alfredh/pytools/raw/master/ccheck.py"
20
21
script:
22
- - make EXTRA_CFLAGS=-Werror
+ - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
+ make EXTRA_CFLAGS=-Werror;
23
+ fi
24
+ - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
25
+ make EXTRA_CFLAGS="-I/usr/local/opt/openssl/include -Werror" EXTRA_LFLAGS="-L/usr/local/opt/openssl/lib";
26
27
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then python2 ccheck.py ; fi
0 commit comments