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

Update travis stages #137

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

Revert "No more Artifactory support"

ec095bc
Select commit
Loading
Failed to load commit list.
Open

Update travis stages #137

Revert "No more Artifactory support"
ec095bc
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 - Pull Request succeeded Sep 26, 2023 in 5m 7s

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 #137 Update travis stages .
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in parallel.

Job Python ENV OS State
853.1 3.8 TOXENV=py38 Linux passed
853.2 3.9 TOXENV=py39 Linux passed

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Xenial)
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "git": {
    "depth": false
  },
  "services": [
    "docker"
  ],
  "addons": {
    "ssh_known_hosts": [
      "github.ibm.com"
    ]
  },
  "deploy": [
    {
      "provider": "script",
      "script": "set -e; make docker-build-images docker-test-images docker-quality-images deploy",
      "on": {
        "all_branches": true,
        "condition": [
          "$TOXENV = py38"
        ],
        "repo": "IBM/detect-secrets"
      }
    }
  ],
  "before_install": [
    "echo -e \"machine github.com\\n  login $GH_ACCESS_TOKEN\" >> ~/.netrc",
    "echo -e \"machine github.ibm.com\\n  login $GHE_ACCESS_TOKEN\" >> ~/.netrc"
  ],
  "install": [
    "pip install \"certifi>=2022.12.07\" \"setuptools>=65.5.1\" tox pipenv"
  ],
  "script": [
    "make setup-trivy && make setup-cosign && make trivy-scan-python-vulnerabilities && make test"
  ],
  "cache": {
    "directories": [
      "$HOME/.cache/pre-commit",
      "$HOME/.cache/trivy",
      "$HOME/.cache/cosign"
    ]
  },
  "jobs": {
    "include": [
      {
        "env": [
          {
            "TOXENV": "py38"
          }
        ],
        "python": "3.8",
        "dist": "xenial"
      },
      {
        "env": [
          {
            "TOXENV": "py39"
          }
        ],
        "python": "3.9",
        "dist": "xenial"
      }
    ]
  }
}