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>
This commit is contained in:
Alexander Couzens
2017-06-11 19:35:47 +02:00
parent afeb8d0caa
commit ec1d697b1f
2 changed files with 120 additions and 0 deletions
+12
View File
@@ -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