Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
cassandra-driver / build.yaml
Size: Mime:
schedules:
  commit:
    # per commit job for all branches to run a subset of configs.
    schedule: per_commit
    matrix:
      exclude:
        # Exclude all 0.12 and 4 builds.
        - nodejs: ['0.12', '4']
        # Only build with latest for 0.10
        - nodejs: '0.10'
          cassandra: ['1.2', '2.0', '2.1', '2.2', '3.0']
        # Only build with 1.2 and latest for 0.10
        - nodejs: '6'
          cassandra: ['2.0', '2.1', '2.2', '3.0']
  nightly:
    # nightly job for primary branches to run all configs.
    schedule: nightly
    branches:
      # regex matches primary branch format (2.1, 3.x, 3.0.x, 3.1.x, master, etc).
      include: ["/((\\d+(\\.[\\dx]+)+)|master)/"]
  adhoc:
    # adhoc job for non-primary braches that doesn't have a schedule but may be used to run all configs.
    schedule: adhoc
    branches: 
      exclude: ["/((\\d+(\\.[\\dx]+)+)|master)/"]
nodejs:
  - '0.10'
  - '0.12'
  - '4'
  - '6'
os:
  - ubuntu/trusty64
cassandra:
  - 1.2
  - 2.0
  - 2.1
  - 2.2
  - 3.0
  - 3.9
build:
  - type: envinject
    properties: |
      TEST_CASSANDRA_VERSION=$CCM_CASSANDRA_VERSION
      JAVA_HOME=$CCM_JAVA_HOME
      CCM_PATH=$HOME/ccm
      JUNIT_REPORT_STACK=1
      JUNIT_REPORT_PATH=.
      multi=mocha-jenkins-reporter=-
  - npm: install
  - npm: run-script ci
    graceful: true
  - script: |
      cd examples
      npm install
      ccm create test_samples -n 1 -b -s -v $TEST_CASSANDRA_VERSION
      node runner.js
      run_rc=$?
      ccm remove
      exit $run_rc
    strict: false
  - xunit: "*.xml"