The .travis.yml file used for this job is not available
Build Config
{
"env": {
"global": [
"VERSION=pypy3.3-5.5-alpha"
]
},
"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"
],
"sudo": "required"
}
]
},
"script": "./build-python",
"install": [
"if [ -z \"$VERSION\" ]; then echo \"\\$VERSION not defined\" && travis_terminate 2; fi",
"pushd /opt/pyenv/",
"sudo git checkout master",
"sudo git pull",
"popd"
],
"language": "python",
"after_failure": [
"cat /tmp/python-build.*.log"
],
"after_success": "./create-archive",
"before_script": [
"export INSTALL_DEST=${INSTALL_DEST:-/opt/python}",
"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\" || \"osx\")}",
"export ARCH=${ARCH:-$(uname -m)}",
"export PACKAGES=${PACKAGES:-pip numpy nose pytest mock wheel}"
]
}