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

Builder linux-rel-css Build #5771

Results:

Build successful

SourceStamp:

Projectservo/servo
Repositoryhttps://github.com/servo/servo
Branchauto
Revisione10e56930fa8733e47f0a201aa5a80a5dc7c2d10
Got Revisione10e56930fa8733e47f0a201aa5a80a5dc7c2d10
Changes2 changes

BuildSlave:

servo-linux3

Reason:

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

Steps and Logfiles:

  1. git update ( 5 secs )
    1. stdio
  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. shell__1 './mach clean-nightlies ...' ( 9 secs )
    1. stdio
  6. compile ran build --release --with-debug-assertions warnings ( 20 mins, 10 secs )
    1. warnings (42)
  7. test ran test-css --release --processes 16 --always-succeed ( 14 mins, 51 secs )
    1. css-errorsummary.log
  8. shell__2 './mach filter-intermittents ...' ( 0 secs )
    1. stdio
    2. filtered-css-errorsummary.log
    3. intermittents.log
  9. compile__1 ran build-cef --release --with-debug-assertions ( 36 secs )
    1. stdio
  10. compile__2 ran build-geckolib --release ( 6 mins, 8 secs )
    1. - no logs -
  11. test__1 ran test-stylo --release warnings ( 52 secs )
    1. warnings (3)
  12. shell__3 'bash ./etc/ci/lockfile_changed.sh' ( 0 secs )
    1. stdio
  13. shell__4 '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 5771 Build
codebase Build
got_revision e10e56930fa8733e47f0a201aa5a80a5dc7c2d10 Git
project servo/servo Build
repository https://github.com/servo/servo Build
revision e10e56930fa8733e47f0a201aa5a80a5dc7c2d10 Build
scheduler servo-auto Scheduler
slavename servo-linux3 BuildSlave
warnings-count 45 WarningCountingShellCommand
workdir /home/servo/buildbot/slave/linux-rel-css slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. bors-servo

Timing:

StartFri Sep 1 01:21:40 2017
EndFri Sep 1 02:04:37 2017
Elapsed42 mins, 57 secs

All Changes:

:

  1. Change #59733

    Category None
    Changed by bors-servo <lbergstrom+borsohnoyoudont@mozilla.com>
    Changed at Fri 01 Sep 2017 01:07:20
    Repository https://github.com/servo/servo
    Project servo/servo
    Branch auto
    Revision 297f4740c98b27910df6b6f668fd47a98b527dab

    Comments

    Auto merge of #18183 - shinglyu:availheight, r=asajeffrey
    
    Enable screen.width/height/availWidth/availHeight
    
    <!-- Please describe your changes on the following line: -->
    Support screen.width/height/availWidth/availHeight using information from glutin. r?@paulrouget
    
    Since glutin don't have `availWidth` and `availHeight` information, I let them fallback to `width` and `height`. If that's not acceptable in terms of webcompat, I can remove that part.
    
    There are some test failures on wpt css about mutating screen.width/height should throw exception, but I can't reproduce that behavior on other major browser, so I keep them disabled. Also there are some media query issues, but I believe that's due to some test harness problem on my test machine.
    
    ---
    <!-- 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
    - [x] These changes fix #18062  (github issue number if applicable).
    
    <!-- Either: -->
    - [x] There are tests for these changes in wpt cssom-view
    - [ ] These changes do not require tests because _____
    
    <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
    
    <!-- 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/18183)
    <!-- Reviewable:end -->

    Changed files

    • components/compositing/compositor_thread.rs
    • components/compositing/windowing.rs
    • components/constellation/constellation.rs
    • components/script/dom/screen.rs
    • components/script/dom/webidls/Screen.webidl
    • components/script_traits/script_msg.rs
    • components/servo/lib.rs
    • ports/cef/types.rs
    • ports/cef/window.rs
    • ports/glutin/window.rs
    • tests/wpt/metadata-css/cssom-view-1_dev/html/cssom-view-window-screen-interface.htm.ini
    • tests/wpt/metadata-css/cssom-view-1_dev/html/window-screen-height-immutable.htm.ini
    • tests/wpt/metadata-css/cssom-view-1_dev/html/window-screen-height.htm.ini
    • tests/wpt/metadata-css/cssom-view-1_dev/html/window-screen-width-immutable.htm.ini
    • tests/wpt/metadata-css/cssom-view-1_dev/html/window-screen-width.htm.ini
  2. Change #59736

    Category None
    Changed by bors-servo <lbergstrom+borsohnoyoudont@mozilla.com>
    Changed at Fri 01 Sep 2017 01:07:48
    Repository https://github.com/servo/servo
    Project servo/servo
    Branch auto
    Revision e10e56930fa8733e47f0a201aa5a80a5dc7c2d10

    Comments

    Auto merge of #18317 - cbrewster:custom_elements_enable, r=jdm
    
    Enable Custom Elements by Default
    
    <!-- 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
    - [X] These changes fix #9372 (github issue number if applicable).
    
    <!-- Either: -->
    - [ ] There are tests for these changes OR
    - [X] These changes do not require tests because enabling pref flag.
    
    <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
    
    <!-- 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/18317)
    <!-- Reviewable:end -->

    Changed files

    • resources/prefs.json
    • tests/wpt/metadata/custom-elements/__dir__.ini
    • tests/wpt/metadata/custom-elements/attribute-changed-callback.html.ini
    • tests/wpt/metadata/fetch/api/cors/cors-preflight.any.js.ini
    • tests/wpt/mozilla/meta/MANIFEST.json
    • tests/wpt/mozilla/tests/mozilla/interfaces.html