Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,24 @@
os:
- osx

osx_image:
# MacOS X 10.15.4
- xcode11.5
# MacOS X 10.14.6
- xcode11.3
# MacOS X 10.13
- xcode10.1
# MacOS X 10.13, Default
- xcode9.4

language: c
compiler:
- clang

env:
- EXTRADEPS="openssl"
- EXTRADEPS=""

git:
submodules: false

Expand All @@ -17,7 +31,7 @@ notifications:
before_install:
- if [[ "$TRAVIS_OS_NAME" = "osx" ]]; then
brew update;
for pkg in openssl autoconf automake autogen libtool nettle p11-kit libtasn1 gettext bison;do
for pkg in $EXTRADEPS autoconf automake autogen libtool nettle p11-kit libtasn1 gettext bison;do
brew install $pkg || true;
done;
for pkg in nettle wget p11-kit libtasn1;do
Expand Down