Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
dac5a91e
Commit
dac5a91e
authored
10 years ago
by
Oleg Hahm
Browse files
Options
Downloads
Patches
Plain Diff
travis: exit early on error
parent
1ea34ce3
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.travis.yml
+7
-6
7 additions, 6 deletions
.travis.yml
with
7 additions
and
6 deletions
.travis.yml
+
7
−
6
View file @
dac5a91e
...
...
@@ -43,21 +43,22 @@ script:
-
make -s -C ./examples/default info-concurrency
-
git rebase riot/master || git rebase --abort
-
./dist/tools/licenses/check.sh master
-
./dist/tools/licenses/check.sh master || exit
# TODO:
# Remove the `AC` argument when all headers have been
# taken care of in master.
-
./dist/tools/externc/check.sh master AC
-
./dist/tools/externc/check.sh master AC
|| exit
# TODO:
# Remove all but `master` parameters to cppcheck (and remove second
# invocation) once all warnings of cppcheck have been taken care of
# in master.
-
./dist/tools/cppcheck/check.sh master --diff-filter=MR --error-exitcode=0
-
./dist/tools/cppcheck/check.sh master --diff-filter=AC
-
./dist/tools/cppcheck/check.sh master --diff-filter=MR --error-exitcode=0
|| exit
-
./dist/tools/cppcheck/check.sh master --diff-filter=AC
|| exit
-
make -C ./tests/unittests all test BOARD=native
-
make -C ./tests/unittests all test BOARD=qemu-i386
-
make -C ./tests/unittests all test BOARD=native
|| exit
-
make -C ./tests/unittests all test BOARD=qemu-i386
|| exit
-
./dist/tools/compile_test/compile_test.py
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment