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

Increasing the timeout for PX up #2669

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Increasing the timeout for PX up

b460018
Select commit
Loading
Failed to load commit list.
Open

Increasing the timeout for PX up #2669

Increasing the timeout for PX up
b460018
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Jul 8, 2024 in 17m 7s

Build Passed

The build passed.

Details

This is a normal build for the topic/vumesh/PWX-37983 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",
    "mongodb"
  ],
  "go": [
    "1.21.x"
  ],
  "cache": {
    "directories": [
      "$GOPATH/pkg/mod"
    ]
  },
  "before_install": [
    "wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -",
    "echo \"deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse\" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list",
    "sudo apt-get update -yq",
    "sudo apt-get install apt-transport-https ca-certificates mongodb-org -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"
      }
    ]
  }
}