diff options
author | Nathan Hjelm <hjelmn@me.com> | 2016-10-01 07:42:30 -0600 |
---|---|---|
committer | Nathan Hjelm <hjelmn@me.com> | 2016-10-01 07:42:30 -0600 |
commit | 9a5a8136ae96c99d229756ba34458805a12d7846 (patch) | |
tree | 8b371a48242f5414d9d865d90e18f0e92caa85ae | |
parent | d39d8e9ef5a773eeb8fad019d73387fde79efaf6 (diff) | |
download | libusb-9a5a8136ae96c99d229756ba34458805a12d7846.tar.gz |
try to get travis building with multiple macOS versions
Signed-off-by: Nathan Hjelm <hjelmn@me.com>
-rw-r--r-- | .travis.yml | 19 | ||||
-rw-r--r-- | libusb/version_nano.h | 2 |
2 files changed, 13 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml index 536ab22..f8ef972 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,21 @@ -# Require trusty for now as it has a more recent version of autoconf -sudo: required -dist: trusty language: c compiler: - gcc - clang -os: - - linux - - osx - +matrix: + include: + - os: linux + # Require trusty for now as it has a more recent version of autoconf + dist: trusty + sudo: required + - os: osx + osx_image: xcode8 + - os: osx + osx_image: xcode7.1 + - os: osx + osx_image: beta-xcode6.2 addons: apt: diff --git a/libusb/version_nano.h b/libusb/version_nano.h index e437be1..b49bd47 100644 --- a/libusb/version_nano.h +++ b/libusb/version_nano.h @@ -1 +1 @@ -#define LIBUSB_NANO 11152 +#define LIBUSB_NANO 11153 |