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

PWX-37059: Mock schedops #2443

Open
wants to merge 3 commits into
base: release-9.8
Choose a base branch
from

Vendor

ae14f27
Select commit
Loading
Failed to load commit list.
Open

PWX-37059: Mock schedops #2443

Vendor
ae14f27
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed May 10, 2024 in 1m 40s

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 #2443 PWX-37059: Mock schedops.
Any changes that have been made to the release-9.8 branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in parallel.

Stage 1: PR Verify & e2e tests

This stage failed.

Job Go OS State
9727.1 1.19.x Linux failed
9727.2 1.19.x Linux failed

Build Configuration

Build Option Setting
Language Go
Operating System Linux (Xenial)
Go Version 1.19.x
Build Configuration
{
  "language": "go",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "sudo": true,
  "services": [
    "docker"
  ],
  "go": [
    "1.19.x"
  ],
  "install": [
    "go install github.com/vbatts/[email protected]",
    "curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl",
    "chmod +x kubectl",
    "mv kubectl ${GOPATH}/bin",
    "curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/v0.9.0/kind-$(uname)-amd64",
    "chmod +x ./kind",
    "mv ./kind ${GOPATH}/bin"
  ],
  "jobs": {
    "include": [
      {
        "stage": "PR Verify & e2e tests",
        "script": [
          "make pr-verify"
        ]
      },
      {
        "script": [
          "make pr-test"
        ]
      }
    ]
  },
  "after_script": [
    "if [ \"${TRAVIS_PULL_REQUEST}\" == \"false\" ]; then echo \"${DOCKER_PASS}\" | docker login -u \"${DOCKER_USER}\" --password-stdin; make push-mock-sdk-server; fi"
  ],
  "notifications": {
    "email": [
      {
        "recipients": [
          "[email protected]",
          "[email protected]"
        ],
        "on_success": "change",
        "on_failure": "always"
      }
    ]
  },
  "branches": {
    "only": [
      "master",
      "/^release-.*$/"
    ]
  }
}