From c0eeb00f17b1518c6d8495923a3a9514e2a039d3 Mon Sep 17 00:00:00 2001 From: Tetsuo Kiso Date: Mon, 8 Nov 2021 02:19:45 +0900 Subject: [PATCH] Delete .travis.yml (#114) --- .travis.yml | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index a5c831e..0000000 --- a/.travis.yml +++ /dev/null @@ -1,35 +0,0 @@ -# Cf. http://docs.travis-ci.com/user/getting-started/ -# Cf. http://docs.travis-ci.com/user/languages/go/ - -matrix: - include: - - os: linux - language: go - go: 1.16 - # 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 - # Pin to macOS 10.12 (indirectly by using the Xcode 8.3 image). We must - # do this to get the OSXFUSE kernel extension to work because there - # currently is no know way to programmatically grant permissions to load - # a kernel extension in macOS 10.13. - # - # See https://github.com/travis-ci/travis-ci/issues/10017 for details. - osx_image: xcode8.3 - language: go - go: 1.16 - -# Install fuse before installing our code. -before_install: - # 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