[BACK-43] jellyfish updates based on reuse of legacy _id for migration #203
Travis CI / Travis CI - Branch
succeeded
Jan 30, 2025 in 2m 1s
Build Passed
The build passed, just like the previous build.
Details
This is a normal build for the add-dedup-hash 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 (Jammy) |
Node.js Version | 20.12.1 |
Build Configuration
{
"language": "node_js",
"os": [
"linux"
],
"dist": "jammy",
"node_js": [
"20.12.1"
],
"services": [
"docker"
],
"env": [
"global={:MONGODB=>\"mongodb-linux-x86_64-ubuntu2204-6.0.14\"}={:MONGOSH=>\"mongosh-2.2.3-linux-x64\"}"
],
"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}.tgz -O /tmp/mongodb.tgz",
"tar -xf /tmp/mongodb.tgz",
"wget https://downloads.mongodb.com/compass/${MONGOSH}.tgz -O /tmp/mongosh.tgz",
"tar -xf /tmp/mongosh.tgz",
"mkdir /tmp/data",
"${PWD}/${MONGODB}/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",
"${PWD}/${MONGOSH}/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": {
"artifacts": {
"paths": [
"$(git ls-files -o deploy/*/*-*.tar.gz | tr \"\\n\" \":\")"
],
"target_paths": [
"/"
],
"region": "us-west-2"
}
},
"install": [
"npm install"
],
"script": [
"npm run lint",
"npm run test",
"./artifact.sh"
]
}
Loading