1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #4615 from cgundogan/pr/travis/branch

travis: pass the proper branch to compile_test.py
This commit is contained in:
Martine Lenders 2016-01-08 17:17:41 +01:00
commit 398a81c287
2 changed files with 2 additions and 1 deletions

View File

@ -31,6 +31,7 @@ install:
- sudo apt-get -y install $(./dist/tools/travis-scripts/get-pkg-list.py)
- git config --global user.email "travis@example.com"
- git config --global user.name "Travis CI"
- test "$TRAVIS_BRANCH" = "master" || git fetch origin $TRAVIS_BRANCH:$TRAVIS_BRANCH
script:
- ./dist/tools/travis-scripts/build_and_test.sh

View File

@ -70,5 +70,5 @@ then
# resolved:
# - make -C ./tests/unittests all test BOARD=qemu-i386 || exit
fi
./dist/tools/compile_test/compile_test.py master
./dist/tools/compile_test/compile_test.py $TRAVIS_BRANCH
fi