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

Builder linux-rel-css Build #1813

Results:

Build successful

SourceStamp:

Projectservo/servo
Repositoryhttps://github.com/servo/servo
Branchauto
Revisiondabb79c7878fce31b8b979dd5fcfdfb8713a9d80
Got Revisiondabb79c7878fce31b8b979dd5fcfdfb8713a9d80
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. - no logs -
  3. generic_1 generic_1 ( 0 secs )
    1. - no logs -
  4. shell 'pkill -x ...' ( 0 secs )
    1. stdio
  5. compile ran build --release --with-debug-assertions warnings ( 22 mins, 37 secs )
    1. warnings (2)
  6. test ran test-css --release --processes 16 --always-succeed ( 12 mins, 7 secs )
    1. css-errorsummary.log
  7. shell__1 './mach filter-intermittents ...' ( 0 secs )
    1. stdio
    2. filtered-css-errorsummary.log
    3. intermittents.log
  8. compile__1 ran build-cef --release --with-debug-assertions ( 48 secs )
    1. stdio
  9. compile__2 ran build-geckolib --release warnings ( 3 mins, 11 secs )
    1. warnings (6)
  10. test__1 ran test-stylo --release warnings ( 2 mins, 16 secs )
    1. warnings (4)
  11. shell__2 'bash ./etc/ci/lockfile_changed.sh' ( 0 secs )
    1. stdio
  12. shell__3 '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 1813 Build
codebase Build
got_revision dabb79c7878fce31b8b979dd5fcfdfb8713a9d80 Git
project servo/servo Build
repository https://github.com/servo/servo Build
revision dabb79c7878fce31b8b979dd5fcfdfb8713a9d80 Build
scheduler servo-auto Scheduler
slavename servo-linux3 BuildSlave
warnings-count 12 WarningCountingShellCommand
workdir /home/servo/buildbot/slave/linux-rel-css slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. bors-servo

Timing:

StartTue Jan 10 13:05:26 2017
EndTue Jan 10 13:46:34 2017
Elapsed41 mins, 7 secs

All Changes:

:

  1. Change #32749

    Category None
    Changed by bors-servo <lbergstrom+borsohnoyoudont@mozilla.com>
    Changed at Tue 10 Jan 2017 12:50:48
    Repository https://github.com/servo/servo
    Project servo/servo
    Branch auto
    Revision dabb79c7878fce31b8b979dd5fcfdfb8713a9d80

    Comments

    Auto merge of #14603 - mrobinson:collect-scoll-roots, r=emilio
    
    Rework the way scroll roots are collected
    
    <!-- Please describe your changes on the following line: -->
    
    ---
    <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
    - [x] `./mach build -d` does not report any errors
    - [x] `./mach test-tidy` does not report any errors
    - [ ] These changes fix #__ (github issue number if applicable).
    
    <!-- Either: -->
    - [ ] There are tests for these changes OR
    - [x] These changes do not require tests because they should not change behavior.
    
    <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
    
    Collect scroll roots during the collect_stacking_context phase instead
    of during display list construction. This will be useful in order to
    collect containing block scroll roots as well as to give scroll roots
    sequential ids in the future. This change also pulls stacking context
    children out of the StackingContext struct itself, which should reduce
    very slightly the memory used by the finished display list. This also
    simplifies the DisplayListBuilder because it no longer has to maintain
    a stack of ScrollRootIds and StackingContextIds and can instead just
    rely on the program stack.
    
    <!-- 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/14603)
    <!-- Reviewable:end -->

    Changed files

    • components/gfx/display_list/mod.rs
    • components/layout/block.rs
    • components/layout/display_list_builder.rs
    • components/layout/flex.rs
    • components/layout/flow.rs
    • components/layout/inline.rs
    • components/layout/list_item.rs
    • components/layout/multicol.rs
    • components/layout/sequential.rs
    • components/layout/table.rs
    • components/layout/table_caption.rs
    • components/layout/table_cell.rs
    • components/layout/table_colgroup.rs
    • components/layout/table_row.rs
    • components/layout/table_rowgroup.rs
    • components/layout/table_wrapper.rs
    • components/layout/traversal.rs