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

OADP-2144: Resize cloned pvc based on cmp between cloned vs size and source pvc size #251

Merged

remove cu patch log statements

19e0982
Select commit
Loading
Failed to load commit list.
Merged

OADP-2144: Resize cloned pvc based on cmp between cloned vs size and source pvc size #251

remove cu patch log statements
19e0982
Select commit
Loading
Failed to load commit list.
This check has been archived and is scheduled for deletion. Learn more about checks retention
Travis CI / Travis CI - Pull Request required action Aug 24, 2023 in 36s

Build Errored

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

Details

This is a pull request build.

It is running a build against the merge commit, after merging #251 OADP-2144: Reszie cloned pvc based on cmp between cloned vs size and source pvc ….
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has six jobs, running in three sequential stages.

Stage 1: execute unit tests

This stage errored.

Job Go ENV OS State
365.1 stable IMAGE=quay.io/konveyor/volume-snapshot-mover Linux errored

Stage 2: build images

This stage canceled.

Job Go ENV OS State
365.2 stable IMAGE=quay.io/konveyor/volume-snapshot-mover Linux canceled
365.3 stable IMAGE=quay.io/konveyor/volume-snapshot-mover Linux canceled
365.4 stable IMAGE=quay.io/konveyor/volume-snapshot-mover Linux canceled
365.5 stable IMAGE=quay.io/konveyor/volume-snapshot-mover Linux canceled

Stage 3: push manifest

This stage canceled.

Job ENV OS State
365.6 IMAGE=quay.io/konveyor/volume-snapshot-mover Linux canceled

Build Configuration

Build Option Setting
Language Go
Operating System Linux (Focal)
Go Version stable
Build Configuration
{
  "language": "go",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "services": [
    "docker"
  ],
  "go": [
    "stable"
  ],
  "env": [
    "global={:IMAGE=>\"quay.io/konveyor/volume-snapshot-mover\"}={:DEFAULT_BRANCH=>\"master\"}={:DOCKERFILE=>\"Dockerfile\"}={:DOCKER_CLI_EXPERIMENTAL=>\"enabled\"}={:GOPROXY=>\"https://proxy.golang.org,https://goproxy.io,direct\"}"
  ],
  "before_install": [
    "if [ \"${TRAVIS_BRANCH}\" == \"${DEFAULT_BRANCH}\" ]; then\n  export TAG=latest\nelse\n  export TAG=\"${TRAVIS_BRANCH}\"\nfi\n"
  ],
  "before_script": [
    "go mod vendor -v",
    "sed -i 's|^RUN go mod download$|COPY vendor/ vendor/|g' ${DOCKERFILE}",
    "sed -i 's|-mod=mod|-mod=vendor|g' ${DOCKERFILE}",
    "sed -i 's|go build|go build -v|g' ${DOCKERFILE}"
  ],
  "script": [
    "docker build -t ${IMAGE}:${TAG}-${TRAVIS_ARCH} -f ${DOCKERFILE} .",
    "if [ -n \"${QUAY_ROBOT}\" ]; then docker login quay.io -u \"${QUAY_ROBOT}\" -p ${QUAY_TOKEN}; fi",
    "if [ -n \"${QUAY_ROBOT}\" ]; then docker push ${IMAGE}:${TAG}-${TRAVIS_ARCH}; fi"
  ],
  "jobs": {
    "include": [
      {
        "stage": "execute unit tests",
        "script": [
          "go test -v ./...\n"
        ]
      },
      {
        "stage": "build images",
        "arch": "ppc64le"
      },
      {
        "arch": "s390x"
      },
      {
        "arch": "arm64-graviton2",
        "virt": "lxd",
        "group": "edge"
      },
      {
        "arch": "amd64"
      },
      {
        "stage": "push manifest",
        "language": "shell",
        "arch": "amd64",
        "before_script": [
    ],
    "script": [
      "if [ -n \"${QUAY_ROBOT}\" ]; then\n  docker login quay.io -u \"${QUAY_ROBOT}\" -p ${QUAY_TOKEN}\n  docker manifest create \\\n    ${IMAGE}:${TAG} \\\n    ${IMAGE}:${TAG}-amd64 \\\n    ${IMAGE}:${TAG}-ppc64le \\\n    ${IMAGE}:${TAG}-s390x \\\n    ${IMAGE}:${TAG}-aarch64\n  docker manifest push ${IMAGE}:${TAG}\nfi"
    ]
  }
]

}
}