Skip to content
Snippets Groups Projects
Commit 64cef15f authored by Kaspar Schleiser's avatar Kaspar Schleiser
Browse files

Merge pull request #5149 from kaspar030/rebuild_all_if_pkg_changed

dist: compile_test.py: build everything on changes in pkg/
parents ec78d130 e308ad4a
Branches
No related tags found
No related merge requests found
...@@ -119,7 +119,8 @@ def is_updated(application_folder, subprocess_env): ...@@ -119,7 +119,8 @@ def is_updated(application_folder, subprocess_env):
return True return True
if '.travis.yml' in diff_files or \ if '.travis.yml' in diff_files or \
any('dist/' in s for s in diff_files): any('dist/' in s for s in diff_files) or \
any('pkg/' in s for s in diff_files):
return True return True
boards_changes = set() boards_changes = set()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment