mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
Auto merge of #22176 - servo:jdm-patch-20, r=KiChjang
Don't try to use test-css command in CI. <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/22176) <!-- Reviewable:end -->
This commit is contained in:
commit
679fb36924
1 changed files with 10 additions and 12 deletions
|
@ -9,16 +9,14 @@ set -o nounset
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
REPEAT_COUNT=100
|
REPEAT_COUNT=100
|
||||||
|
|
||||||
for test_type in wpt css; do
|
while read test_name; do
|
||||||
while read test_name; do
|
|
||||||
echo " - Checking ${test_name}"
|
echo " - Checking ${test_name}"
|
||||||
./mach "test-${test_type}" \
|
./mach test-wpt \
|
||||||
--release \
|
--release \
|
||||||
--log-raw - \
|
--log-raw - \
|
||||||
--repeat "${REPEAT_COUNT}" \
|
--repeat "${REPEAT_COUNT}" \
|
||||||
"${test_name}" \
|
"${test_name}" \
|
||||||
> intermittents.log \
|
> intermittents.log \
|
||||||
< /dev/null
|
< /dev/null
|
||||||
done < "etc/ci/former_intermittents_${test_type}.txt"
|
done < "etc/ci/former_intermittents_wpt.txt"
|
||||||
done
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue