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

feat(populate-guids): add CLI/SDK functionality to populate a manifes… #136

Open
wants to merge 20 commits into
base: master
Choose a base branch
from

Apply automatic documentation changes

232e98e
Select commit
Loading
Failed to load commit list.
Open

feat(populate-guids): add CLI/SDK functionality to populate a manifes… #136

Apply automatic documentation changes
232e98e
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Dec 7, 2023 in 2m 24s

Build Passed

The build passed, just like the previous build.

Details

This is a normal build for the feat/populate-guids 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
3509.1 3.9 PYPI_API_TOKEN=[secure] Linux passed
3509.2 3.8 PYPI_API_TOKEN=[secure] Linux errored This job is allowed to fail.
3509.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]"
  ]
}