The .travis.yml file used for this job is not available
Build Config
{
"env": {
"global": [
"VERSION=5.5.30 ALIAS=5.5"
]
},
"addons": {
"artifacts": {
"paths": [
"$LSB_RELEASE/"
],
"target_paths": [
"/binaries/$OS_NAME/$LSB_RELEASE/$ARCH"
]
}
},
"matrix": {
"include": [
{
"env": [
"RELEASE=trusty"
],
"sudo": "required",
"services": [
"docker"
]
},
{
"env": [
"RELEASE=precise"
],
"dist": "precise",
"sudo": "required",
"group": "edge"
}
],
"allow_failures": [
{
"env": [
"RELEASE=trusty"
],
"sudo": "required",
"services": [
"docker"
]
}
]
},
"script": [
"./bin/compile",
"./bin/compile-extension-redis",
"./bin/compile-extension-mongodb",
"./bin/compile-extension-amqp",
"./bin/compile-extension-zmq || true",
"./bin/compile-extension-memcached"
],
"install": [
"sudo apt-get update -qq",
"sudo apt-get install expect",
"cp $HOME/.php-build/share/php-build/default_configure_options $HOME",
"rm -rf $HOME/.phpenv",
"git clone 'https://github.com/phpenv/phpenv.git' $HOME/.phpenv",
"eval \"$($HOME/.phpenv/bin/phpenv init -)\"",
"pushd $HOME/.php-build",
"git reset --hard HEAD",
"git checkout master",
"git pull",
"popd",
"mv $HOME/default_configure_options $HOME/.php-build/share/php-build/default_configure_options"
],
"language": "php",
"after_failure": "cat /tmp/php-build.*.log",
"after_success": "./bin/archive",
"before_script": [
"export LSB_RELEASE=${LSB_RELEASE:-$(lsb_release -rs || echo ${$(sw_vers -productVersion)%*.*})}",
"export OS_NAME=${OS_NAME:-$(lsb_release -is | tr \"A-Z\" \"a-z\" || echo \"osx\")}",
"export ARCH=${ARCH:-$(uname -m)}",
"export INSTALL_DEST=${INSTALL_DEST:-$HOME/.phpenv/versions}",
"__dots() { while true ; do echo -en . ; sleep 30 ; done } ; __dots &"
]
}