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

update go.work.sum #124

Merged
merged 1 commit into from
Aug 31, 2023

update go.work.sum

8728d22
Select commit
Loading
Failed to load commit list.
Merged

update go.work.sum #124

update go.work.sum
8728d22
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Aug 31, 2023 in 4m 1s

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 #124 update go.work.sum.
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.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"
  ]
}