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

Bump github.com/rs/zerolog from 1.29.1 to 1.31.0 #269

Merged
merged 1 commit into from
Oct 4, 2023

Bump github.com/rs/zerolog from 1.29.1 to 1.31.0

109bd3a
Select commit
Loading
Failed to load commit list.
Merged

Bump github.com/rs/zerolog from 1.29.1 to 1.31.0 #269

Bump github.com/rs/zerolog from 1.29.1 to 1.31.0
109bd3a
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Oct 2, 2023 in 8m 41s

Build Passed

The build passed.

Details

This is a normal build for the dependabot/go_modules/github.com/rs/zerolog-1.31.0 branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build has four jobs, running in four sequential stages.

Stage 1: build

This stage passed.

Job Go OS State
480.1 1.18 Linux passed

Stage 2: style

This stage passed.

Job Go OS State
480.2 1.18 Linux passed

Stage 3: unit tests

This stage passed.

Job Go OS State
480.3 1.18 Linux passed

Stage 4: bdd tests

This stage passed.

Job Go OS State
480.4 1.18 Linux passed

Build Configuration

Build Option Setting
Language Go
Operating System Linux (Xenial)
Go Version 1.18
Build Configuration
{
  "language": "go",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "go": [
    "1.18"
  ],
  "jobs": {
    "include": [
      {
        "stage": "build",
        "script": [
          "go build"
        ]
      },
      {
        "stage": "style",
        "script": [
          "./gofmt.sh",
          "./govet.sh",
          "./golint.sh",
          "./gocyclo.sh",
          "./goerrcheck.sh",
          "./goconst.sh",
          "./gosec.sh",
          "./gocyclo.sh",
          "./abcgo.sh",
          "./ineffassign.sh",
          "./shellcheck.sh"
        ]
      },
      {
        "stage": "unit tests",
        "before_script": [
          "go build"
        ],
        "script": [
          "env",
          "go test -coverprofile coverage.out $(go list ./... | grep -v tests)",
          "./check_coverage.sh"
        ],
        "after_success": [
          "bash <(curl -s https://codecov.io/bash)"
        ]
      },
      {
        "stage": "bdd tests",
        "services": [
          "docker"
        ],
        "before_script": [
          "go build",
          "wget -O docker-compose.yml https://raw.githubusercontent.com/RedHatInsights/insights-behavioral-spec/main/docker-compose.yml",
          "wget -O bdd_runner.sh https://raw.githubusercontent.com/RedHatInsights/insights-behavioral-spec/main/run_in_docker.sh && chmod +x bdd_runner.sh"
        ],
        "script": [
          "./bdd_runner.sh cleaner-tests ."
        ]
      }
    ]
  },
  "stages": [
    {
      "name": "build"
    },
    {
      "name": "style"
    },
    {
      "name": "unit tests"
    },
    {
      "name": "bdd tests"
    }
  ]
}