Skip to content

Add renovate.json

1f7d7c1
Select commit
Loading
Failed to load commit list.
Open

chore: Configure Renovate #280

Add renovate.json
1f7d7c1
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed May 7, 2025 in 3m 37s

Build Failed

The build failed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #280 chore: Configure Renovate.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has three jobs, running in parallel.

Job Go OS State
870.1 Lint 1.17.x Linux failed
870.2 Unit Tests 1.17.x Linux passed
870.3 Release Validation 1.17.x Linux passed

Build Configuration

Build Option Setting
Language Go
Operating System Linux (Xenial)
Go Version 1.17.x
Build Configuration
{
  "language": "go",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "go": [
    "1.17.x"
  ],
  "services": [
    "docker"
  ],
  "jobs": {
    "include": [
      {
        "name": "Lint",
        "script": [
          "make lint"
        ]
      },
      {
        "name": "Unit Tests",
        "script": [
          "make coverage-unit"
        ]
      },
      {
        "name": "Tests",
        "script": [
          "make test"
        ],
        "if": "fork = false AND type = push"
      },
      {
        "name": "Release Validation",
        "script": [
          "make validate-release RELEASE_VERSION=1000.0.0"
        ]
      },
      {
        "name": "Release",
        "stage": "release",
        "script": [
          "make -e RELEASE_VERSION=\"${TRAVIS_TAG/v}\" release"
        ],
        "if": "tag =~ /^v[0-9]+\\.[0-9]+\\.[0-9]+$/",
        "deploy": [
          {
            "provider": "releases",
            "file": [
              "out/*"
            ],
            "file_glob": true,
            "skip_cleanup": true,
            "overwrite": true,
            "on": {
              "all_branches": true,
              "repo": "IBM/cloud-operators"
            },
            "token": "$RELEASE_GH_TOKEN"
          }
        ]
      }
    ]
  },
  "notifications": {
    "email": [
      {
        "enabled": false
      }
    ]
  }
}