Skip to content

Adds azure and gcp image credential providers

ad541f2
Select commit
Loading
Failed to load commit list.
Open

[release-4.14] OCPBUGS-57111: Adds azure and gcp image credential providers #12531

Adds azure and gcp image credential providers
ad541f2
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Jun 5, 2025 in 1m 35s

Build Passed

The build passed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #12531 [release-4.14] OCPBUGS-30970: Adds azure and gcp image credential providers.
Any changes that have been made to the release-4.14 branch before the build ran are also included.

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 (Xenial)
Python Version 3.7
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "sudo": false,
  "cache": {
    "pip": true
  },
  "before_cache": [
    "rm ~/.cache/pip/log/debug.log"
  ],
  "python": [
    "3.7"
  ],
  "before_install": [
    "python -m pip install --upgrade virtualenv"
  ],
  "install": [
    "pip install --upgrade pip",
    "pip install tox-travis"
  ],
  "script": [
    "tox"
  ],
  "after_failure": [
    "echo \"Here's a list of installed Python packages:\"",
    "pip list --format=columns",
    "echo Dumping logs, because tests failed to succeed",
    "for log in `ls .tox/*/log/*.log`\ndo\n  echo Outputting $log\n  cat $log\ndone\n",
    "pip_debug_log=/home/travis/.cache/pip/log/debug.log",
    "echo Outputting pip debug log from $pip_debug_log",
    "cat $pip_debug_log"
  ]
}