Push event #566 passed

  • Ran for
  • Total time
  • New branch build
The .travis.yml file used for this job is not available
Build Config
{
  "env": {
    "global": [
      "VERSION='2.7.10'",
      "ALIAS=$VERSION"
    ]
  },
  "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": "./bin/compile",
  "install": [
    "pushd /opt/pyenv/",
    "sudo git checkout master",
    "sudo git pull",
    "popd"
  ],
  "language": "python",
  "after_failure": "cat /tmp/python-build.*.log",
  "after_success": "./bin/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\" || echo \"osx\")}",
    "export ARCH=${ARCH:-$(uname -m)}",
    "export PACKAGES=${PACKAGES:-pip numpy nose pytest mock wheel}",
    "export PYTHON_CONFIGURE_OPTS=\"$CONFIGURE_OPTS --enable-unicode=ucs4\""
  ]
}