From 447adb721859cc32ece1384b1f5bd8601c4e2f35 Mon Sep 17 00:00:00 2001 From: Chris Cowan Date: Mon, 7 Dec 2015 12:50:12 -0700 Subject: [PATCH] Removing travis from the project --- .travis.yml | 28 ---------------------------- README.md | 2 -- tasks/travis.js | 9 --------- 3 files changed, 39 deletions(-) delete mode 100644 .travis.yml delete mode 100644 tasks/travis.js diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index b1f556e5d3c2d..0000000000000 --- a/.travis.yml +++ /dev/null @@ -1,28 +0,0 @@ -language: node_js -node_js: '0.12.7' -install: - - npm install -script: ./node_modules/.bin/grunt travis -sudo: false -addons: - firefox: "40.0" -cache: - directories: - - esvm - - node_modules - - selenium -before_cache: -- rm -rf esvm/*/logs esvm/data_dir -before_script: -- export DISPLAY=:99.0 -- sh -e /etc/init.d/xvfb start -notifications: - email: - - rashid.khan@elastic.co - hipchat: - rooms: - secure: UKrVR+5KztHarodQruQe97UJfwftutD6RNdXlVkr+oIr2GqccisDIIN9pAzS/kxl+eAnP1uT6VHzc9YI/jgbrmiSkz3DHViw+MwDwY2aIDgI8aHEbd/4B2ihtb15+OYTVbb+lytyz4+W8A8hSmbkTR/P/uFIJ+EYcBeYZfw1elo= - format: html - on_success: change - template: - - ! '%{repository_slug}/%{branch} by %{author}: %{commit_message} (open)' diff --git a/README.md b/README.md index a30b031815ebf..dce694f588ae1 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ # Kibana 5.0.0-snapshot -[![Build Status](https://travis-ci.org/elastic/kibana.svg?branch=master)](https://travis-ci.org/elastic/kibana?branch=master) - Kibana is an open source ([Apache Licensed](https://github.com/elastic/kibana/blob/master/LICENSE.md)), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elasticsearch. ## Requirements diff --git a/tasks/travis.js b/tasks/travis.js deleted file mode 100644 index a034818f0f3e7..0000000000000 --- a/tasks/travis.js +++ /dev/null @@ -1,9 +0,0 @@ -module.exports = function (grunt) { - - grunt.registerTask('travis', 'Travis CI build script', [ - 'eslint:source', - 'test:server', - 'test:browser' - ]); - -};