Builder linux-rel-css Build #829
Results:
Build successful
SourceStamp:
| Project | servo/servo |
| Repository | https://github.com/servo/servo |
| Branch | auto |
| Revision | 9467fbe26d25dfc633d5ab8973fe459d14eff9dc |
| Got Revision | 9467fbe26d25dfc633d5ab8973fe459d14eff9dc |
| Changes | 1 change |
BuildSlave:
servo-linux3Reason:
The AnyBranchScheduler scheduler named 'servo-auto' triggered this build
Steps and Logfiles:
-
git update ( 5 secs )
- - no logs -
-
generic generic ( 0 secs )
-
shell 'pkill -x ...' ( 0 secs )
-
compile ran build --release --with-debug-assertions warnings ( 19 mins, 47 secs )
-
test ran test-css --release --processes 16 ( 20 mins, 9 secs )
-
compile__1 ran build-cef --release --with-debug-assertions warnings ( 14 mins, 2 secs )
-
compile__2 ran build-geckolib --release warnings ( 3 mins, 48 secs )
-
test__1 ran test-stylo --release warnings ( 2 mins, 44 secs )
-
shell__1 'bash ./etc/ci/lockfile_changed.sh' ( 0 secs )
-
shell__2 'bash ./etc/ci/manifest_changed.sh' ( 0 secs )
Build Properties:
| Name | Value | Source |
|---|---|---|
| branch | auto | Build |
| builddir | /home/servo/buildbot/slave/linux-rel-css | slave |
| buildername | linux-rel-css | Builder |
| buildnumber | 829 | Build |
| codebase | Build | |
| got_revision | 9467fbe26d25dfc633d5ab8973fe459d14eff9dc | Git |
| project | servo/servo | Build |
| repository | https://github.com/servo/servo | Build |
| revision | 9467fbe26d25dfc633d5ab8973fe459d14eff9dc | Build |
| scheduler | servo-auto | Scheduler |
| slavename | servo-linux3 | BuildSlave |
| warnings-count | 10 | WarningCountingShellCommand |
| workdir | /home/servo/buildbot/slave/linux-rel-css | slave (deprecated) |
Forced Build Properties:
| Name | Label | Value |
|---|
Responsible Users:
- bors-servolbergstrom+bors@mozilla.com
Timing:
| Start | Mon Nov 14 21:11:11 2016 |
| End | Mon Nov 14 22:11:49 2016 |
| Elapsed | 1 hrs, 38 secs |
All Changes:
:
Change #26367
Category None Changed by bors-servo <lbergstrom+bors@mozilla.com> Changed at Mon 14 Nov 2016 20:47:45 Repository https://github.com/servo/servo Project servo/servo Branch auto Revision 9467fbe26d25dfc633d5ab8973fe459d14eff9dc Comments
Auto merge of #13641 - emilio:rayon-style, r=pcwalton Use rayon to drive parallel layout and styling. <!-- Please describe your changes on the following line: --> The current work queue had a really annoying constraint: The size of the node had to be the size of the work unit data. This makes it impractical for the new restyling model where we plan to pass down a bunch of data. Rayon by default makes you wait for the result of the work unit, which makes it impractical for the current model (it's mostly sequential). I added an API to rayon that allows us to push work to the queue without waiting (https://github.com/nikomatsakis/rayon/pull/103). This still needs some work (for example, we're loosing the memory reporting functionality), but I wanted feedback on this. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [ ] `./mach build -d` does not report any errors - [ ] `./mach test-tidy` does not report any errors - [ ] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- 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/13641) <!-- Reviewable:end -->
Changed files
- components/layout/Cargo.toml
- components/layout/lib.rs
- components/layout/parallel.rs
- components/layout_thread/Cargo.toml
- components/layout_thread/lib.rs
- components/servo/Cargo.lock
- components/style/Cargo.toml
- components/style/gecko/data.rs
- components/style/gecko/wrapper.rs
- components/style/lib.rs
- components/style/parallel.rs
- components/style/thread_state.rs
- components/style/workqueue.rs
- ports/cef/Cargo.lock
- ports/geckolib/Cargo.lock
- tests/wpt/metadata/MANIFEST.json
- tests/wpt/web-platform-tests/html/semantics/forms/form-submission-0/submit-entity-body.html