Push event #1.1 errored

  • Ran for
AMD64
no language set
Git
---
language: generic
addons:
  snaps:
    - name: helm
      classic: true
script:
  - helm lint chart/pagerduty-oncall
  - bin/docker-build
deploy:
  provider: script
  script: bin/docker-push
  on:
    repo: travis-ci/pagerduty-oncall
    all_branches: true
notifications:
  email: false
SimVascular/SimVascular:.travis.yml@02a8c74
language: cpp

matrix:
  include:
    - os: linux
      compiler: gcc
      dist: bionic
      sudo: required
      env: WITH_CMAKE=true SV_EXTERNALS_VERSION_NUMBER=2019.06 SV_EXTERNALS_USE_PREBUILT_QT=false
    - os: linux
      compiler: gcc
      dist: xenial
      sudo: required
      env: WITH_CMAKE=true SV_EXTERNALS_VERSION_NUMBER=2019.06 SV_EXTERNALS_USE_PREBUILT_QT=false
    - os: linux
      compiler: gcc
      dist: xenial
      sudo: required
      env: WITH_CMAKE=false SV_EXTERNALS_VERSION_NUMBER=2019.06 SV_EXTERNALS_USE_PREBUILT_QT=false
    - os: osx
      compiler: clang
      osx_image: xcode8.3
      sudo: required
      env: WITH_CMAKE=true  SV_EXTERNALS_VERSION_NUMBER=2019.06 SV_EXTERNALS_USE_PREBUILT_QT=false
    - os: osx
      compiler: clang
      osx_image: xcode8.3
      sudo: required
      env: WITH_CMAKE=false SV_EXTERNALS_VERSION_NUMBER=2019.06 SV_EXTERNALS_USE_PREBUILT_QT=false
    - os: windows
      env: WITH_CMAKE=true SV_EXTERNALS_VERSION_NUMBER=2019.06 SV_EXTERNALS_USE_PREBUILT_QT=false

addons:
  apt:
    packages:
    - libglu1-mesa-dev
    - libxt-dev
    - libxi-dev
    - libglew-dev
    - libxmu-dev

git:
  submodules: false

before_install:
  - export NUM_THREADS=4
  - export cwd=$(pwd)
  - if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then cwd=$(pwd -W); fi
  - echo "CWD=$cwd"
  - export BUILD_DIR=$cwd/build
  - export SCRIPTS=$cwd/travis
  - if $SV_EXTERNALS_USE_PREBUILT_QT; then source $SCRIPTS/travis_get_system_qt.sh; fi
  - if $WITH_CMAKE; then $SCRIPTS/travis_get_cmake_latest.sh; fi

script: $SCRIPTS/travis_build.sh
Build Config
{
  "os": [
    "linux"
  ],
  "addons": {
    "snaps": [
      {
        "name": "helm",
        "classic": true
      }
    ]
  },
  "deploy": [
    {
      "on": {
        "repo": "travis-ci/pagerduty-oncall",
        "all_branches": true
      },
      "script": "bin/docker-push",
      "provider": "script"
    }
  ],
  "script": [
    "helm lint chart/pagerduty-oncall",
    "bin/docker-build"
  ],
  "language": "shell",
  "notifications": {
    "email": {
      "enabled": false
    }
  }
}