Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Ubuntu 22.04 for Travis Build #356

Merged
merged 1 commit into from
Oct 20, 2023

Use Ubuntu 22.04 for Travis Build

392350e
Select commit
Loading
Failed to load commit list.
Merged

Use Ubuntu 22.04 for Travis Build #356

Use Ubuntu 22.04 for Travis Build
392350e
Select commit
Loading
Failed to load commit list.
This check has been archived and is scheduled for deletion. Learn more about checks retention
Travis CI / Travis CI - Branch required action Oct 20, 2023 in 23s

Build Errored

The build errored. This is a change from the previous build, which passed.

Details

This is a normal build for the gchhablani-patch-2 branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Jammy)
Python Version 3.7
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "sudo": false,
  "python": [
    "3.7"
  ],
  "install": [
    "pip install -r requirements.txt",
    "pip install coverage==4.5.4",
    "pip install flake8 pytest PyYAML",
    "pip install coveralls"
  ],
  "script": [
    "flake8 ./ || travis_terminate 1;",
    "python setup.py test || travis_terminate 1;"
  ],
  "after_success": [
    "coveralls --rcfile=.coveragerc",
    "./deploy-staging.sh"
  ],
  "notifications": {
    "email": [
      {
        "slack": "cloudcv:gy3CGQGNXLwXOqVyzXGZfdea",
        "on_success": "change",
        "on_failure": "always"
      }
    ]
  },
  "deploy": [
    {
      "provider": "pypi",
      "password": {
        "secure": "geiU/sJ+dCXd+IfCzik5jdZpkZZK+8OiDnPlAmR5RdjI1GXmeMa5wHwlmrUqtWpK0s2aqDYNL9FSSInTT2r8Dc2i1n9AjUHAjxJfEdXyOzJpAQ7q0LbdebfI+WEJW2R5+8qo9nz5+7vQQ/IDkuu8OP3cKEfGNawZp2T+okalvgJ01qNmZn/xd7jEbc+fH7ncPu/qK/fi70JMDuX+m0zUhXvnyue8rGTqZDltmUbWEO+qAhG3q/MxspRZaRtHFvV765fQpfrYj3Vov7kgSNFkPtkEtojjC3CdETpR6TpLipsDXOTAT0pQ8ucEBiGb8JZ7xdprEgMm7w9/jWs6Z//XH3pf+c2LyqqvnPOVC90cRiBXpL3nJQDFUO1UZFUEAvxHv0IrtVk81tz98jPyJf3Qaqu0SCDLgxPG3h5WKo3AIsuPwwMlWGtToP11x2xdJSs3N9U6wGOjtGgfzk3aVdK4jx+Ai7xtI5Bk9o/tLmNxzWSqG87RVraOJrAx/ztdoEk5jfqM//7kVw7G8/aih8nTrVlC3/l3CT751SEemWvBKJvCMJFYo2cDJqQ5nKIrJHfY2uBCroDYhJg1zX1o92sesyyleNRuKFCHclsZxcK4m81EaVy2Bb1mrtIyMHLWbST9BWUBpj/EiSLX+J/2aHV4q3j6hkK/tgYEjKg/7Z8ysw8="
      },
      "distributions": "sdist bdist_wheel",
      "on": {
        "tags": true
      },
      "username": "cloudcv"
    }
  ]
}