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

DEV-XXXX: Upgrade sqlalchemy. #106

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from

DEV-XXXX: Upgrade.

5ff3fdf
Select commit
Loading
Failed to load commit list.
Open

DEV-XXXX: Upgrade sqlalchemy. #106

DEV-XXXX: Upgrade.
5ff3fdf
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Apr 19, 2024 in 5m 56s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #106 DEV-XXXX: Upgrade sqlalchemy..
Any changes that have been made to the develop branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in two sequential stages.

Stage 1: test

This stage passed.

Job Python ENV OS State
1247.1 3.8 QUAY_USERNAME=[secure] Linux passed

Stage 2: deploy

This stage passed.

Job Python ENV OS State
1247.2 3.8 QUAY_USERNAME=[secure] Linux passed

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Focal)
Python Version 3.8
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "python": [
    "3.8"
  ],
  "jobs": {
    "include": [
      {
        "stage": "test",
        "addons": {
          "postgresql": "13",
          "apt": {
            "sources": [
              {
                "sourceline": "deb http://apt.postgresql.org/pub/repos/apt/ xenial-pgdg main 13",
                "key_url": "https://www.postgresql.org/media/keys/ACCC4CF8.asc"
              }
            ],
            "packages": [
              "postgresql-13",
              "postgresql-client-13"
            ]
          }
        },
        "before_install": [
          "sudo cp travis/postgresql.conf /etc/postgresql/13/main/postgresql.conf",
          "sudo cp travis/pg_hba.conf /etc/postgresql/13/main/pg_hba.conf",
          "sudo pg_ctlcluster 13 main restart"
        ],
        "jdk": "oraclejdk8",
        "sudo": false,
        "install": [
          "pip install tox-travis tox==3.23.0 pytest==3.10.1"
        ],
        "script": [
          "tox"
        ]
      },
      {
        "stage": "deploy",
        "script": [
          "pip install importlib-metadata",
          "pip install --no-deps .",
          "python -c \"from importlib_metadata import version; print(version('indexd'))\" > VERSION.txt\n",
          "cat VERSION.txt",
          "docker login -u=\"$QUAY_USERNAME\" -p=\"$QUAY_PASSWORD\" quay.io",
          "bash docker.sh push"
        ]
      }
    ]
  },
  "env": [
    "global=QUAY_USERNAME=[secure]=QUAY_PASSWORD=[secure]={:PIP_INDEX_URL=>\"https://pypi.org/simple\"}"
  ]
}