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

Gib to GB #105

Open
wants to merge 8 commits into
base: master
Choose a base branch
from

Upgrading vpc lib

45e09dd
Select commit
Loading
Failed to load commit list.
Open

Gib to GB #105

Upgrading vpc lib
45e09dd
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Feb 25, 2024 in 8m 28s

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 #105 Gib to GB.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in parallel.

Job Go OS State Notes
1115.1 1.20.11 Linux passed
1115.2 tip Linux errored This job is allowed to fail.

Build Configuration

Build Option Setting
Language Go
Operating System Linux (Xenial)
Go Versions 1.20.11, tip
Build Configuration
{
  "language": "go",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "go": [
    "1.20.11",
    "tip"
  ],
  "group": "bluezone",
  "cache": {
    "bundler": true
  },
  "sudo": true,
  "before_install": [
    "openssl aes-256-cbc -K $encrypted_7937b810c182_key -iv $encrypted_7937b810c182_iv -in ./e2e/config/secret.txt.enc -out secret.txt -d || true",
    "sudo add-apt-repository ppa:masterminds/glide -y && sudo apt-get update -q",
    "sudo apt-get install glide -y",
    "sudo apt-get install bc"
  ],
  "before_script": [
    "make deps",
    "go get github.com/pierrre/gotestcover"
  ],
  "script": [
    "mkdir -p \"$GOPATH/src\" \"$GOPATH/bin\" && chmod -R 777 \"$GOPATH\"",
    "mkdir -p $GOPATH/src/github.com/IBM/ibm-csi-common",
    "rsync -az . $GOPATH/src/github.com/IBM/ibm-csi-common",
    "make vet",
    "make fmt",
    "travis_wait 300 make test",
    "make coverage && touch \"Passing\" || touch \"Failed\""
  ],
  "after_success": [
    "./scripts/calculateCoverage.sh",
    "./scripts/publishCoverage.sh"
  ],
  "after_failure": [
    "./scripts/handleFailure.sh"
  ],
  "jobs": {
    "fast_finish": true,
    "allow_failures": [
      {
        "go": "tip"
      }
    ]
  }
}