Commit fe7f3a55 authored by Aaron Jacobs's avatar Aaron Jacobs

.travis.yml: enable macOS builds too.

parent da343d6b
# Cf. http://docs.travis-ci.com/user/getting-started/ # Cf. http://docs.travis-ci.com/user/getting-started/
# Cf. http://docs.travis-ci.com/user/languages/go/ # Cf. http://docs.travis-ci.com/user/languages/go/
language: go matrix:
include:
go: 1.8.1 - os: linux
language: go
# Use the virtualized Trusty beta Travis is running in order to get support for go: 1.8.1
# installing fuse. # Use the virtualized Trusty beta Travis is running in order to get
# # support for installing fuse.
# Cf. Personal communication from support@travis-ci.com. #
dist: trusty # Cf. Personal communication from support@travis-ci.com.
dist: trusty
sudo: required
- os: osx
language: go
go: 1.8.1
# Install fuse before installing our code. # Install fuse before installing our code.
before_install: before_install:
- sudo apt-get install -qq fuse # For linux: install fuse.
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
sudo apt-get install -qq fuse;
fi
# For macOS: update homebrew and then install osxfuse.
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew cask install osxfuse; fi
Markdown is supported
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