diff --git a/.travis.yml b/.travis.yml index b3087e39..c5f36618 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,13 @@ -language: node_js +language: python notifications: email: false before_install: - rvm install 2.4.0 + - wget https://raw.githubusercontent.com/davemachado/build-bot/master/build_bot/requirements.txt install: - gem install httparty ruby-progressbar - - wget -O build/build_bot https://raw.githubusercontent.com/davemachado/build-bot/master/build_bot/build_bot.py + - pip install build-bot + - pip install -r requirements.txt before_script: - cd build script: diff --git a/README.md b/README.md index 294b1b2a..cfccc7a7 100644 --- a/README.md +++ b/README.md @@ -61,8 +61,8 @@ API | Description | Auth | HTTPS | Link | API | Description | Auth | HTTPS | Link | |---|---|---|---|---| | AniList | AniList Anime | `OAuth` | No | [Go!](http://anilist-api.readthedocs.io/en/latest/) | -| Jikan | Unofficial MyAnimeList API | No | Yes | [Go!](https://jikan.me) | -| Kitsu | Anime discovery platform | `OAuth` | Yes | [Go!](http://docs.kitsu.apiary.io/) | +| Jikan | unofficial MyAnimeList API | No | Yes | [Go!](https://jikan.me) | +| Kitsu |Anime discovery platform | `OAuth` | Yes | [Go!](http://docs.kitsu.apiary.io/) | | Studio Ghibli | Resources from Studio Ghibli films | No | Yes | [Go!](https://ghibliapi.herokuapp.com) | ### Anti-Malware @@ -87,15 +87,15 @@ API | Description | Auth | HTTPS | Link | ### Books API | Description | Auth | HTTPS | Link | |---|---|---|---|---| -| British National Bibliography | Books | No | No | [Go!](http://bnb.data.bl.uk/) | +|British National Bibliography | Books | No | No | [Go!](http://bnb.data.bl.uk/) | | Goodreads | Books | No | Yes | [Go!](https://www.goodreads.com/api) | | Google Books | Books | `OAuth` | Yes | [Go!](https://developers.google.com/books/) | ### Business API | Description | Auth | HTTPS | Link | |---|---|---|---|---| -| mailgun | Email Service | `apiKey` | Yes | [Go!](https://www.mailgun.com/) | -| markerapi | Trademark Search | No | No | [Go!](http://www.markerapi.com/) | +| mailgun | Email Service | `apikey` | Yes | [Go!](https://www.mailgun.com/) | +| markerapi | Trademark Search | No | no | [Go!](http://www.markerapi.com/) | ### Calendar API | Description | Auth | HTTPS | Link | 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!"