Enable Travis to run E2E against kube 1.15.0

Remove Travis from skip doc check

Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
This commit is contained in:
Madhu Rajanna 2019-07-01 13:01:33 +05:30 committed by mergify[bot]
parent ffe99403fc
commit 5cf0599367
2 changed files with 7 additions and 1 deletions

View File

@ -59,6 +59,12 @@ jobs:
- make image-cephcsi || travis_terminate 1;
- scripts/travis-functest.sh v1.14.3 || travis_terminate 1;
- name: cephcsi with kube 1.15.0
script:
- scripts/skip-doc-change.sh || travis_terminate 0;
- make image-cephcsi || travis_terminate 1;
- scripts/travis-functest.sh v1.15.0 || travis_terminate 1;
deploy:
- provider: script
on: # yamllint disable-line rule:truthy

View File

@ -5,7 +5,7 @@ CHANGED_FILES=$(git diff --name-only "$TRAVIS_COMMIT_RANGE")
skip=0
#files to be skipped
declare -a FILES=(^docs/ .md$ ^scripts/ LICENSE .travis.yml .mergify.yml .github .gitignore)
declare -a FILES=(^docs/ .md$ ^scripts/ LICENSE .mergify.yml .github .gitignore)
function check_file_present() {
local file=$1