re-organize tool installation #127
Merged
Travis CI / Travis CI - Branch
succeeded
Sep 7, 2023 in 3m 33s
Build Passed
The build passed.
Details
This is a normal build for the eric/tools 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.19 |
Build Configuration
{
"language": "go",
"os": [
"linux"
],
"dist": "focal",
"sudo": false,
"go": [
"1.19"
],
"env": [
"global={:MONGODB=>\"5.3.2\"}"
],
"go_import_path": "github.com/tidepool-org/hydrophone",
"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 --dbpath /tmp/data --bind_ip 127.0.0.1 --logpath ${PWD}/mongod.log &> /dev/null &",
"until nc -z localhost 27017; do echo Waiting for MongoDB; sleep 1; done"
],
"services": [
"docker"
],
"script": [
"./build.sh",
"make test",
"./artifact.sh"
]
}
Loading