mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Merge pull request #456 from metajack/ci-fixes
Fixes for `make check` for continuous integration support
This commit is contained in:
commit
6d9368cc35
2 changed files with 5 additions and 14 deletions
|
@ -285,4 +285,4 @@ backup-rust:
|
|||
mv src/compiler/rust ..
|
||||
|
||||
restore-rust:
|
||||
if [ -d ../rust ]; then rm -rf src/rust; mv ../rust src/; fi
|
||||
if [ -d ../rust ]; then rm -rf src/compiler/rust; mv ../rust src/compiler/; fi
|
||||
|
|
|
@ -32,19 +32,10 @@ def do_license_check(name, contents):
|
|||
report_error_name_no(name, 1, "incorrect license")
|
||||
|
||||
exceptions = [
|
||||
"src/cairo", # Upstream
|
||||
"src/libcss", # Upstream
|
||||
"src/libhubbub", # Upstream
|
||||
"src/libparserutils", # Upstream
|
||||
"src/libwapcaplet", # Upstream
|
||||
"src/mozjs", # Upstream
|
||||
"src/pixman", # Upstream
|
||||
"src/rust/", # Upstream
|
||||
"src/rust-azure/src", # Upstream
|
||||
"src/rust-azure/include", # Upstream
|
||||
"src/rust-harfbuzz/harfbuzz", # Upstream
|
||||
"src/skia", # Upstream
|
||||
"src/servo/dom/bindings/codegen", # Generated and upstream code combined with our own. Could use cleanup
|
||||
"src/support", # Upstream
|
||||
"src/platform", # Upstream
|
||||
"src/compiler", # Upstream
|
||||
"src/components/servo/dom/bindings/codegen", # Generated and upstream code combined with our own. Could use cleanup
|
||||
]
|
||||
|
||||
def should_check(name):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue