servo: Merge #8601 - Check if MANIFEST.json changes as per #8587 (from mfeckie:feature/manifest-diff-ci-check); r=jdm

Adds a script which checks if either of the MANIFEST.json files change in `test/wpt` in response to #8587

- Addresses currently incorrect MANIFEST.json
- Adds checking script

PR for saltfs to add to CI checks to follow (https://github.com/servo/saltfs/pull/163)

https://reviewable.io/reviews/servo/servo/8601

Source-Repo: https://github.com/servo/servo
Source-Revision: f2fe1171d2a4f4ae37cfa0e0e345662f68e41c5d
This commit is contained in:
Martin Feckie 2015-11-21 19:44:10 +05:01
parent 746277306a
commit da0049d5da
2 changed files with 7 additions and 0 deletions

View File

@ -11,6 +11,7 @@ matrix:
script:
- ./mach build -d --verbose
- bash etc/ci/lockfile_changed.sh
- bash etc/ci/manifest_changed.sh
cache:
directories:
- .cargo

View File

@ -0,0 +1,6 @@
#!/bin/bash
./mach test-wpt --manifest-update SKIP_TESTS > /dev/null
./mach test-css --manifest-update SKIP_TESTS > /dev/null
diff=$(git diff -- tests/*/MANIFEST.json)
echo "$diff"
[[ ! $diff ]]