Skip to content
This repository was archived by the owner on Jun 26, 2026. It is now read-only.

Configure Mend for GitHub Enterprise#63

Open
ibm-mend-app[bot] wants to merge 1 commit into
unstablefrom
whitesource/configure
Open

Configure Mend for GitHub Enterprise#63
ibm-mend-app[bot] wants to merge 1 commit into
unstablefrom
whitesource/configure

Add .whitesource configuration file

31f513c
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request required action Sep 17, 2025 in 8m 20s

Build Errored

The build errored. 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 #63 Configure Mend for GitHub Enterprise.
Any changes that have been made to the unstable branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in parallel.

Job Compiler OS State
905.1 g++ Linux failed
905.2 g++ Linux errored

Build Configuration

Build Option Setting
Language C++
Operating System Linux (Focal)
Compiler Version g++
Build Configuration
{
  "language": "cpp",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "branches": {
    "only": [
      "master",
      "unstable",
      "nvmestore",
      "fuse-ustack",
      "testing"
    ]
  },
  "sudo": true,
  "services": [
    "docker"
  ],
  "compiler": [
    "g++"
  ],
  "notifications": {
    "email": [
      {
        "on_success": "never",
        "on_failure": "always"
      }
    ]
  },
  "env": [
    "global={} jobs={:CONTAINER_NAME=>\"\\\"comanche-build-fedora27\\\"\", :DOCKERIMG=>\"\\\"fedora:27\\\"\", :BOOTSTRAP_FILE=>\"\\\"./install-yum.sh\\\"\", :HOSTMODULE=>\"\\\"-v /lib/modules:/lib/modules:ro -v /usr/src:/usr/src:ro\\\"\"}={:CONTAINER_NAME=>\"\\\"comanche-build-ubuntu1604\\\"\", :DOCKERIMG=>\"\\\"ubuntu:16.04\\\"\", :BOOTSTRAP_FILE=>\"\\\"./install-apts.sh\\\"\"}"
  ],
  "before_install": [
    "sudo apt-get update",
    "sudo apt-get install linux-headers-`uname -r`",
    "docker run -d --name ${CONTAINER_NAME} --privileged --cap-add=ALL -v $(pwd):/travis ${HOSTMODULE} ${DOCKERIMG} tail -f /dev/null",
    "docker ps",
    "docker exec -t ${CONTAINER_NAME} bash  -c \" cd /travis/deps; ${BOOTSTRAP_FILE};\""
  ],
  "install": [
    "docker exec -t ${CONTAINER_NAME} bash -c \" cd /travis; cd deps; ./fetch-deps.sh\""
  ],
  "script": [
    "docker exec -t ${CONTAINER_NAME} bash -c \" cd /travis ; mkdir build; cd build; cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX:PATH=`pwd`/dist .. -DTBB_CI_BUILD=ON -DCOMANCHE_CI_TASK_LIMIT=2 && make bootstrap && make && make install\""
  ],
  "after_success": [
    "echo 'comanche build complete'"
  ]
}