travis: fix git complaining about 'ambiguous argument'
This commit is contained in:
parent
a3732a768c
commit
5f201f1856
@ -30,10 +30,6 @@ install:
|
|||||||
- git config --global user.email "travis@example.com"
|
- git config --global user.email "travis@example.com"
|
||||||
- git config --global user.name "Travis CI"
|
- git config --global user.name "Travis CI"
|
||||||
|
|
||||||
- git remote add riot https://github.com/RIOT-OS/RIOT.git
|
|
||||||
- git fetch riot master
|
|
||||||
- git log -1 --pretty=format:%H riot/master
|
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- ./dist/tools/travis-scripts/build_and_test.sh
|
- ./dist/tools/travis-scripts/build_and_test.sh
|
||||||
|
|
||||||
|
|||||||
6
dist/tools/travis-scripts/build_and_test.sh
vendored
6
dist/tools/travis-scripts/build_and_test.sh
vendored
@ -28,7 +28,7 @@ then
|
|||||||
then
|
then
|
||||||
RESULT=0
|
RESULT=0
|
||||||
|
|
||||||
git rebase riot/master || git rebase --abort
|
git rebase master || git rebase --abort
|
||||||
RESULT=$(set_result $? $RESULT)
|
RESULT=$(set_result $? $RESULT)
|
||||||
|
|
||||||
./dist/tools/whitespacecheck/check.sh master
|
./dist/tools/whitespacecheck/check.sh master
|
||||||
@ -56,7 +56,7 @@ then
|
|||||||
./dist/tools/cppcheck/check.sh master --diff-filter=AC
|
./dist/tools/cppcheck/check.sh master --diff-filter=AC
|
||||||
RESULT=$(set_result $? $RESULT)
|
RESULT=$(set_result $? $RESULT)
|
||||||
|
|
||||||
./dist/tools/pr_check/pr_check.sh riot/master
|
./dist/tools/pr_check/pr_check.sh master
|
||||||
RESULT=$(set_result $? $RESULT)
|
RESULT=$(set_result $? $RESULT)
|
||||||
|
|
||||||
exit $RESULT
|
exit $RESULT
|
||||||
@ -70,5 +70,5 @@ then
|
|||||||
# resolved:
|
# resolved:
|
||||||
# - make -C ./tests/unittests all test BOARD=qemu-i386 || exit
|
# - make -C ./tests/unittests all test BOARD=qemu-i386 || exit
|
||||||
fi
|
fi
|
||||||
./dist/tools/compile_test/compile_test.py riot/master
|
./dist/tools/compile_test/compile_test.py master
|
||||||
fi
|
fi
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user