Skip to content

Commit

Permalink
[travis] Fix travis failure
Browse files Browse the repository at this point in the history
Travis failed on the OSX test cases on with the following error message:
.../kernel_require.rb:55:in `require': cannot load such file --
active_support/core_ext/object/blank (LoadError)

Solution: https://stackoverflow.com/questions/54888582/ruby-cannot-load-such-file-active-support-core-ext-object-blank
  • Loading branch information
csordasmarton committed Oct 17, 2019
1 parent 93d5cb0 commit 930440d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -62,6 +62,7 @@ matrix:
before_install:
# Download macOS specific extra dependencies.
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then git clone https://github.com/llvm-mirror/clang.git ~/llvm --branch master --single-branch --depth 1; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update-reset; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install doxygen; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install llvm@8; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install thrift@0.9; fi
Expand Down

0 comments on commit 930440d

Please sign in to comment.