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

merge_manifests fix for rows with no guid #196

Merged
merged 14 commits into from
Dec 6, 2023

Apply automatic documentation changes

48d3015
Select commit
Loading
Failed to load commit list.
Merged

merge_manifests fix for rows with no guid #196

Apply automatic documentation changes
48d3015
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Dec 6, 2023 in 2m 29s

Build Passed

The build passed, just like the previous build.

Details

This is a normal build for the fix/merge_bucket_manifest_fix branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build has three jobs, running in parallel.

Job Python ENV OS State Notes
3500.1 3.9 PYPI_API_TOKEN=[secure] Linux passed
3500.2 3.8 PYPI_API_TOKEN=[secure] Linux errored This job is allowed to fail.
3500.3 3.10 PYPI_API_TOKEN=[secure] Linux passed This job is allowed to fail.

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Jammy)
Python Versions 3.8, 3.9, 3.10
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "python": [
    "3.8",
    "3.9",
    "3.10"
  ],
  "jobs": {
    "allow_failures": [
      {
        "python": "3.8"
      },
      {
        "python": "3.10"
      }
    ]
  },
  "before_install": [
    "pip install --upgrade pip",
    "curl -sSL https://install.python-poetry.org | python -",
    "which poetry",
    "poetry --version"
  ],
  "install": [
    "poetry install -vv --all-extras --no-interaction --no-cache",
    "poetry show -vv"
  ],
  "script": [
    "echo Unit testing is now done in GH Actions, this just pushing to pypi as necessary"
  ],
  "before_deploy": [
    "poetry config repositories.testpypi https://test.pypi.org/legacy/",
    "poetry config pypi-token.testpypi $PYPI_API_TOKEN",
    "poetry config pypi-token.pypi $PYPI_PROD_API_TOKEN",
    "poetry build"
  ],
  "deploy": [
    {
      "provider": "script",
      "skip_cleanup": true,
      "script": "poetry publish -n -vv -r testpypi || true",
      "on": {
        "python": "3.9",
        "repo": "uc-cdis/gen3sdk-python",
        "tags": false,
        "all_branches": true,
        "condition": [
          "$TRAVIS_BRANCH != master"
        ]
      }
    },
    {
      "provider": "script",
      "skip_cleanup": true,
      "script": "poetry publish -n -vv",
      "on": {
        "python": "3.9",
        "repo": "uc-cdis/gen3sdk-python",
        "tags": true
      }
    }
  ],
  "env": [
    "global=PYPI_API_TOKEN=[secure]=PYPI_PROD_API_TOKEN=[secure]"
  ]
}