From f098205f3e8dd8e98ba88f3277fc218a4483d263 Mon Sep 17 00:00:00 2001 From: matejcik Date: Mon, 13 May 2019 17:59:30 +0200 Subject: [PATCH] ci: add simple travis check --- .travis.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..3c3cd34cba --- /dev/null +++ b/.travis.yml @@ -0,0 +1,35 @@ +# simple Travis file to run style-checks until our internal CI can process external PRs + +language: python +sudo: false +python: + - "3.6" + +cache: + directories: + - $HOME/.cache/pip + - $HOME/.virtualenvs + +addons: + apt: + packages: + clang-format + + +install: + - pip install --upgrade pip wheel setuptools + - pip install pipenv + - pipenv install + +script: + - pipenv run make style_check + - pipenv run make -C core templates_check + - pipenv run make defs_check + +notifications: + webhooks: + urls: + - http://ci-bot.satoshilabs.com:5000/travis + on_success: always + on_failure: always + on_start: always