Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder linux-rel-css Build #829

Results:

Build successful

SourceStamp:

Projectservo/servo
Repositoryhttps://github.com/servo/servo
Branchauto
Revision9467fbe26d25dfc633d5ab8973fe459d14eff9dc
Got Revision9467fbe26d25dfc633d5ab8973fe459d14eff9dc
Changes1 change

BuildSlave:

servo-linux3

Reason:

The AnyBranchScheduler scheduler named 'servo-auto' triggered this build

Steps and Logfiles:

  1. git update ( 5 secs )
    1. - no logs -
  2. generic generic ( 0 secs )
    1. stdio
  3. shell 'pkill -x ...' ( 0 secs )
    1. stdio
  4. compile ran build --release --with-debug-assertions warnings ( 19 mins, 47 secs )
    1. warnings (1)
  5. test ran test-css --release --processes 16 ( 20 mins, 9 secs )
    1. css-errorsummary.log
  6. compile__1 ran build-cef --release --with-debug-assertions warnings ( 14 mins, 2 secs )
    1. stdio
    2. warnings (1)
  7. compile__2 ran build-geckolib --release warnings ( 3 mins, 48 secs )
    1. warnings (5)
  8. test__1 ran test-stylo --release warnings ( 2 mins, 44 secs )
    1. warnings (3)
  9. shell__1 'bash ./etc/ci/lockfile_changed.sh' ( 0 secs )
    1. stdio
  10. shell__2 'bash ./etc/ci/manifest_changed.sh' ( 0 secs )
    1. stdio

Build Properties:

NameValueSource
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:

NameLabelValue

Responsible Users:

  1. bors-servo

Timing:

StartMon Nov 14 21:11:11 2016
EndMon Nov 14 22:11:49 2016
Elapsed1 hrs, 38 secs

All Changes:

:

  1. Change #26367

    Category None
    Changed by bors-servo <lbergstrom+borsohnoyoudont@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