fusego/.travis.yml

29 lines
822 B
YAML
Raw Normal View History

2015-07-21 14:55:40 +03:00
# Cf. http://docs.travis-ci.com/user/getting-started/
# Cf. http://docs.travis-ci.com/user/languages/go/
2017-05-13 07:55:05 +03:00
matrix:
include:
- os: linux
language: go
2019-09-16 19:23:05 +03:00
go: 1.13
2017-05-13 07:55:05 +03:00
# 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
sudo: required
- os: osx
language: go
2019-09-16 19:23:05 +03:00
go: 1.13
2015-07-21 14:55:40 +03:00
# Install fuse before installing our code.
before_install:
2017-05-13 07:55:05 +03:00
# 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