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

feat: db and replica scaling options #67

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from

feat: db and replica scaling options

59c5b30
Select commit
Loading
Failed to load commit list.
Draft

feat: db and replica scaling options #67

feat: db and replica scaling options
59c5b30
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed Jun 18, 2024 in 1m 25s

Build Failed

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

Details

This is a pull request build.

It is running a build against the merge commit, after merging #67 feat: db and replica scaling options.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has three jobs, running in parallel.

Job Go ENV OS State
270.1 Code Lint 1.13.x GOFLAGS=-mod=vendor Linux failed
270.2 Code UnitTest 1.13.x GOFLAGS=-mod=vendor Linux failed
270.3 Generated Code is Current 1.13.x GOFLAGS=-mod=vendor Linux passed

Build Configuration

Build Option Setting
Language Go
Operating System Linux (Xenial)
Build Configuration
{
  "language": "go",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "sudo": true,
  "services": [
    "docker"
  ],
  "env": [
    "global={:GOFLAGS=>\"-mod=vendor\"}"
  ],
  "install": [
    "make tools",
    "go mod vendor"
  ],
  "jobs": {
    "fast_finish": true,
    "allow_failures": [
      {
        "go": "tip"
      }
    ],
    "include": [
      {
        "go": "1.13.x",
        "name": "Code Lint",
        "script": [
          "make lint"
        ]
      },
      {
        "go": "1.13.x",
        "name": "Code UnitTest",
        "script": [
          "make test"
        ]
      },
      {
        "go": "1.13.x",
        "name": "Generated Code is Current",
        "script": [
          "make gen && git diff --quiet"
        ]
      }
    ]
  }
}