aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2017-06-11 19:35:47 +0200
committerAlexander Couzens <lynxis@fe80.eu>2017-06-12 18:57:46 +0200
commitec1d697b1fec71c219652776b6432f75d9db062c (patch)
tree2920c2a7b21839fd27bd132d5b8ee7dab61b4e08 /.travis.yml
parentafeb8d0caae9ebd9cde13799bc7326a2f918cc60 (diff)
add .travis.yml to run `make download check` on every package
Travis will run the following steps for every new or modified package: - mkdir tempdir - unpack SDK - make download - make check make download will download the source code. make check will do certain checks. Atm only checking the validity of PKG_HASH. Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 000000000..4cf74b1f0
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,12 @@
+language: c
+dist: trusty
+sudo: false
+cache:
+ directories:
+ - $HOME/sdk
+
+before_script:
+ - ./.travis_do.sh download_sdk
+
+script:
+ - ./.travis_do.sh test_packages