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-43] Dedup hash val #195

Closed
wants to merge 33 commits into from

remove commented out code for summary tests

618c957
Select commit
Loading
Failed to load commit list.
Closed

[BACK-43] Dedup hash val #195

remove commented out code for summary tests
618c957
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Apr 9, 2024 in 2m 16s

Build Passed

The build passed. This is a change from the previous build, which failed.

Details

This is a normal build for the dedup-hash-val 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 Node.js
Operating System Linux (Focal)
Node.js Version 14.21.2
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "sudo": false,
  "node_js": [
    "14.21.2"
  ],
  "install": [
    "npm install"
  ],
  "env": [
    "global={:MONGODB=>\"5.3.2\"}"
  ],
  "before_install": [
    "sudo apt-get remove -y mongodb-org mongodb-org-mongos mongodb-org-server mongodb-org-shell mongodb-org-tools",
    "wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu2004-${MONGODB}.tgz -O /tmp/mongodb.tgz",
    "tar -xf /tmp/mongodb.tgz",
    "mkdir /tmp/data",
    "${PWD}/mongodb-linux-x86_64-ubuntu2004-${MONGODB}/bin/mongod --replSet rs0 --dbpath /tmp/data --bind_ip 127.0.0.1 --logpath ${PWD}/mongod.log &> /dev/null &",
    "sleep 2",
    "${PWD}/mongodb-linux-x86_64-ubuntu2004-${MONGODB}/bin/mongo --host 127.0.0.1 --port 27017 --eval 'rs.initiate()'",
    "until nc -z localhost 27017; do echo Waiting for MongoDB; sleep 1; done"
  ],
  "services": [
    "docker"
  ],
  "script": [
    "npm run lint",
    "npm test",
    "./artifact.sh"
  ]
}