Pull Request #46 Fix xcode build errors
See: https://github.com/travis-ci/travis-cookbooks/issues/952
The .travis.yml file used for this job is not available
Build Config
{
"os": [
"linux"
],
"dist": "trusty",
"sudo": false,
"cache": {
"ccache": true
},
"matrix": {
"include": [
{
"os": "linux",
"dist": "precise",
"sudo": true,
"group": "edge",
"before_script": [
"gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3"
]
},
{
"os": "linux",
"services": [
"docker"
],
"before_script": [
"echo -e \"gem-wrappers\\nrubygems-bundler\\nbundler\\nrake\\nrvm\\n\" >> ~/.rvm/gemsets/global.gems",
"gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3",
"sudo apt-get install haveged",
"sudo service haveged start"
]
},
{
"os": "linux",
"dist": "xenial",
"language": "shell",
"before_script": [
"echo -e \"gem-wrappers\\nrubygems-bundler\\nbundler\\nrake\\nrvm\\n\" >> ~/.rvm/gemsets/global.gems",
"gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3",
"sudo apt-get install haveged",
"sudo service haveged start"
],
"before_install": [
"sudo systemctl stop apt-daily.service &&\nsudo systemctl kill --kill-who=all apt-daily.service &&\nwhile ! (systemctl list-units --all apt-daily.service | fgrep -q dead) ; do\n sleep 1\ndone\n"
]
},
{
"os": "osx",
"install": [
"unset -f pushd",
"unset -f popd"
],
"osx_image": "xcode6.4",
"before_script": [
"curl -sSL https://rvm.io/mpapis.asc | gpg --import -"
],
"before_install": [
"sw_vers",
"unset -f cd"
]
},
{
"os": "osx",
"install": [
"unset -f pushd",
"unset -f popd"
],
"osx_image": "xcode7.2",
"before_script": [
"curl -sSL https://rvm.io/mpapis.asc | gpg --import -"
],
"before_install": [
"sw_vers",
"unset -f cd"
]
},
{
"os": "osx",
"install": [
"unset -f pushd",
"unset -f popd"
],
"osx_image": "xcode8.1",
"before_script": [
"curl -sSL https://rvm.io/mpapis.asc | gpg --import -"
],
"before_install": [
"sw_vers",
"unset -f cd"
]
},
{
"os": "osx",
"osx_image": "xcode9.3beta",
"before_install": [
"sw_vers",
"curl -sL -o gimme https://raw.githubusercontent.com/travis-ci/gimme/master/gimme",
"chmod +x gimme",
"eval $(./gimme 1.10)"
]
}
]
},
"script": [
"unset JRUBY_OPTS",
"./build.sh"
],
"language": "c",
"after_failure": [
"find $rvm_path/log/ -type f | xargs ls -t | head -n 1 | xargs cat"
],
"notifications": {
"email": {
"enabled": false
}
}
}