From 7a54d2af6fdf45d310e58a34fcaedf0264ef71dc Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Thu, 3 Aug 2017 10:33:06 -0400 Subject: [PATCH] update pip install for build-bot --- .travis.yml | 3 ++- build/main.sh | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9d24e391..3fbee404 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,11 @@ -language: node_js +language: python notifications: email: false before_install: - rvm install 2.4.0 install: - gem install httparty ruby-progressbar + - pip install build-bot before_script: - cd build script: diff --git a/build/main.sh b/build/main.sh index 9a3517ce..0d6759c6 100755 --- a/build/main.sh +++ b/build/main.sh @@ -22,7 +22,7 @@ echo "running format validation..." ./validate_format.rb $FORMAT_FILE > format_results.txt if [[ $? != 0 ]]; then echo "format validation failed!" - cat format_results.txt | build_bot + cat format_results.txt | build_bot.py exit 1 else echo "format validation passed!" @@ -31,7 +31,7 @@ echo "running link validation..." ./validate_links.rb $LINK_FILE if [[ $? != 0 ]]; then echo "link validation failed!" - echo "link(s) were unavailible during the build. Please verfiy that they are valid." | build_bot + echo "link(s) were unavailible during the build. Please verfiy that they are valid." | build_bot.py exit 1 else echo "link validation passed!"