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

[BACK-2638] Move Summary buckets to collection and unify datastructure #763

Open
wants to merge 25 commits into
base: master
Choose a base branch
from

final (probably) CGM tests

d366616
Select commit
Loading
Failed to load commit list.
Open

[BACK-2638] Move Summary buckets to collection and unify datastructure #763

final (probably) CGM tests
d366616
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch failed Nov 13, 2024 in 6m 59s

Build Failed

The build failed, just like the previous build.

Details

This is a normal build for the alex/back-2638-buckets-collection 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 (Jammy)
Go Version 1.23.x
Build Configuration
{
  "language": "go",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "go": [
    "1.23.x"
  ],
  "services": [
    "docker"
  ],
  "env": [
    "global={:MONGODB=>\"6.0.14\"}={:MONGOSH=>\"2.2.3\"}"
  ],
  "cache": {
    "directories": [
      "$HOME/.cache/go-build"
    ]
  },
  "before_install": [
    "sudo apt-get update",
    "sudo apt-get install --allow-downgrades -y docker-buildx-plugin mongodb-org=${MONGODB} mongodb-org-database=${MONGODB} mongodb-org-server=${MONGODB} mongodb-mongosh=${MONGOSH} mongodb-org-mongos=${MONGODB} mongodb-org-tools",
    "mkdir /tmp/data",
    "/usr/bin/mongod --dbpath /tmp/data --bind_ip 127.0.0.1 --replSet rs0 --logpath ${PWD}/mongod.log &> /dev/null &",
    "until nc -z localhost 27017; do echo Waiting for MongoDB; sleep 1; done",
    "/usr/bin/mongosh --eval 'rs.initiate(); while (rs.status().startupStatus || (rs.status().hasOwnProperty(\"myState\") && rs.status().myState != 1)) { printjson( rs.status() ); sleep(1000); }; printjson( rs.status() );'"
  ],
  "addons": {
    "apt": {
      "sources": [
        {
          "sourceline": "deb https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/6.0 multiverse",
          "key_url": "https://pgp.mongodb.com/server-6.0.asc"
        }
      ]
    },
    "artifacts": {
      "paths": [
        "$(git ls-files -o deploy/*/*-*.tar.gz | tr \"\\n\" \":\")"
      ],
      "target_paths": [
        "/"
      ],
      "region": "us-west-2"
    },
    "code_climate": {
      "repo_token": "91ded9b66924acbe830541ab3593daf535f05f7c6db91b5cbd2d26dcf37da0b8"
    }
  },
  "script": [
    "make ci-generate ci-build ci-test ci-deploy ci-docker TIMING_CMD=\"time -p\"",
    "make go-ci-test TIMING_CMD=\"time -p\""
  ]
}