From 6baaba79a23475e4c178ec8ecc6f9c86795959ba Mon Sep 17 00:00:00 2001 From: Morten Delenk Date: Sat, 26 Aug 2017 11:18:02 +0100 Subject: [PATCH] added travis yaml file --- .travis.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..76d6608 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,23 @@ +language: python + +install: + - cd ~ + - git clone --depth=1 https://github.com/MTGos/cross-compilers opt + - sudo apt-get install cmake + +python: + - "3.4" + +script: + - bash do_all.sh + +deploy: + provider: pages + skip_cleanup: true + github_token: $GITHUB_TOKEN + on: + branch: master + target_branch: kernel + repo: https://github.com/MTGos/nightlies + local_dir: ~/kernel/out/ +