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

Data integrity for AsyncDR (WIP) #2747

Draft
wants to merge 11 commits into
base: master
Choose a base branch
from

Data integrity for AsyncDR

4578e7f
Select commit
Loading
Failed to load commit list.
Draft

Data integrity for AsyncDR (WIP) #2747

Data integrity for AsyncDR
4578e7f
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Aug 27, 2024 in 17m 22s

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 #2747 Data integrity for AsyncDR (WIP).
Any changes that have been made to the master 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 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"
      }
    ]
  }
}