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

Fix deployment name in backup config #2384

Closed
wants to merge 1 commit into from

Adding debug logs for backup config

13b4c2a
Select commit
Loading
Failed to load commit list.
Closed

Fix deployment name in backup config #2384

Adding debug logs for backup config
13b4c2a
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch failed Apr 18, 2024 in 17m 51s

Build Failed

The build failed, just like the previous build.

Details

This is a normal build for the topic/atrivedi-px/DS-9250 branch. You should be able to reproduce it by checking out the branch locally.

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 Go
Operating System Linux (Focal)
Go Version 1.21.x
Build Configuration
{
  "language": "go",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "sudo": true,
  "services": [
    "docker"
  ],
  "go": [
    "1.21.x"
  ],
  "cache": {
    "directories": [
      "$GOPATH/pkg/mod"
    ]
  },
  "before_install": [
    "sudo apt-get update -yq",
    "sudo apt-get install apt-transport-https ca-certificates -y",
    "sudo update-ca-certificates"
  ],
  "script": [
    "make all"
  ],
  "after_success": [
    "if [ \"${TRAVIS_BRANCH}\" == \"master\" ] && [ \"${TRAVIS_PULL_REQUEST}\" == \"false\" ]; then echo \"${DOCKER_PASS}\" | docker login -u=\"${DOCKER_USER}\" --password-stdin; make container; sudo docker tag \"${DOCKER_HUB_REPO}/torpedo:${DOCKER_HUB_TAG}\" \"${DOCKER_HUB_REPO}/torpedo:${TRAVIS_BRANCH}\"; sudo docker push \"${DOCKER_HUB_REPO}/torpedo:${DOCKER_HUB_TAG}\"; sudo docker push \"${DOCKER_HUB_REPO}/torpedo:${TRAVIS_BRANCH}\"; make container-pds; sudo docker tag \"${DOCKER_HUB_REPO}/torpedo-pds:${DOCKER_HUB_TAG}\" \"${DOCKER_HUB_REPO}/torpedo-pds:${TRAVIS_BRANCH}\"; sudo docker push \"${DOCKER_HUB_REPO}/torpedo-pds:${DOCKER_HUB_TAG}\"; sudo docker push \"${DOCKER_HUB_REPO}/torpedo-pds:${TRAVIS_BRANCH}\"; make container-backup; sudo docker tag \"${DOCKER_HUB_REPO}/torpedo-backup:${DOCKER_HUB_TAG}\" \"${DOCKER_HUB_REPO}/torpedo-backup:${TRAVIS_BRANCH}\"; sudo docker push \"${DOCKER_HUB_REPO}/torpedo-backup:${DOCKER_HUB_TAG}\"; sudo docker push \"${DOCKER_HUB_REPO}/torpedo-backup:${TRAVIS_BRANCH}\"; make container-longevity; sudo docker tag \"${DOCKER_HUB_REPO}/torpedo-longevity:${DOCKER_HUB_TAG}\" \"${DOCKER_HUB_REPO}/torpedo-longevity:${TRAVIS_BRANCH}\"; sudo docker push \"${DOCKER_HUB_REPO}/torpedo-longevity:${DOCKER_HUB_TAG}\"; sudo docker push \"${DOCKER_HUB_REPO}/torpedo-longevity:${TRAVIS_BRANCH}\"; fi"
  ],
  "notifications": {
    "email": [
      {
        "recipients": [
          "[email protected]",
          "[email protected]",
          "[email protected]"
        ],
        "on_success": "change",
        "on_failure": "always"
      }
    ]
  }
}