AMD64
no language set
Git
.travis.yml
language: c
script:
- unset JRUBY_OPTS
- test -f ~/.rvmrc && cat ~/.rvmrc
- ./build.sh
cache: ccache
matrix:
include:
- os: osx
before_install:
- sw_vers
osx_image: xcode9.4
after_failure: find $rvm_path/log/ -type f | xargs ls -t | head -n 1 | xargs cat
notifications:
email: false
Build Config
{
"os": [
"linux"
],
"dist": "trusty",
"sudo": false,
"cache": {
"ccache": true
},
"matrix": {
"include": [
{
"os": "osx",
"osx_image": "xcode9.4",
"before_install": [
"sw_vers"
]
}
]
},
"script": [
"unset JRUBY_OPTS",
"test -f ~/.rvmrc && cat ~/.rvmrc",
"./build.sh"
],
"language": "c",
"after_failure": [
"find $rvm_path/log/ -type f | xargs ls -t | head -n 1 | xargs cat"
],
"notifications": {
"email": {
"enabled": false
}
}
}