Skip to content

Add .whitesource configuration file

2baa51b
Select commit
Loading
Failed to load commit list.
Open

Configure Mend for GitHub Enterprise #115

Add .whitesource configuration file
2baa51b
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Sep 17, 2025 in 36s

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

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Node.js
Operating System Linux (Xenial)
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "sudo": true,
  "services": [
    "docker"
  ],
  "before_install": [
    "echo \"to be done\""
  ],
  "script": [
    "echo \"to be done\""
  ],
  "after_success": [
    "test \"$TRAVIS_EVENT_TYPE\" != \"pull_request\" && cd kcontainer && make build-changed || echo \"success\""
  ],
  "branches": {
    "only": [
      "master",
      "/^[0-9]+\\..*$/",
      "/^v[0-9]+\\..*$/",
      "/^release-[0-9]+\\..*$/"
    ]
  },
  "deploy": [
    {
      "provider": "script",
      "skip_cleanup": true,
      "script": "bash -c \"make push-changed\"",
      "on": {
        "all_branches": true,
        "condition": [
          "$TRAVIS_BRANCH =~ ^master|[0-9]+\\..*|v[0-9]+\\..*|release-[0-9]+\\..*$"
        ]
      }
    }
  ]
}