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

Builder linux-rel-wpt Build #10794

Results:

Build successful

SourceStamp:

Projectservo/servo
Repositoryhttps://github.com/servo/servo
Branchtry-wpt
Revision8b47358a659c64cf89d53e73bbe94d0bffb71a25
Got Revision8b47358a659c64cf89d53e73bbe94d0bffb71a25
Changes1 change

BuildSlave:

servo-linux4

Reason:

The SingleBranchScheduler scheduler named 'wpt-push' triggered this build

Steps and Logfiles:

  1. git update ( 2 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. shell__1 './mach clean-nightlies ...' ( 11 secs )
    1. stdio
  6. shell__2 './mach clean-cargo-cache ...' ( 0 secs )
    1. stdio
  7. shell__3 './etc/ci/clean_build_artifacts.sh' ( 0 secs )
    1. stdio
  8. compile ran build --release --with-debug-assertions -p servo warnings ( 10 mins, 3 secs )
    1. warnings (1)
  9. test ran test-wpt-failure ( 0 secs )
    1. stdio
  10. test__1 ran test-wpt --release --processes 24 --total-chunks 2 --this-chunk 1 --always-succeed ( 16 mins, 25 secs )
    1. - no logs -
  11. shell__4 './mach filter-intermittents ...' ( 2 secs )
    1. stdio
    2. filtered-wpt-errorsummary.log
  12. test__2 ran test-wpt --release --binary-arg=--multiprocess --processes 24 eventsource ( 23 secs )
    1. wpt-mp-errorsummary.log
  13. shell__5 './etc/ci/clean_build_artifacts.sh' ( 0 secs )
    1. stdio

Build Properties:

NameValueSource
branch try-wpt Build
builddir /home/servo/buildbot/slave/linux-rel-wpt slave
buildername linux-rel-wpt Builder
buildnumber 10794 Build
codebase Build
got_revision 8b47358a659c64cf89d53e73bbe94d0bffb71a25 Git
project servo/servo Build
repository https://github.com/servo/servo Build
revision 8b47358a659c64cf89d53e73bbe94d0bffb71a25 Build
scheduler wpt-push Scheduler
slavename servo-linux4 BuildSlave
warnings-count 1 WarningCountingShellCommand
workdir /home/servo/buildbot/slave/linux-rel-wpt slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. bors-servo

Timing:

StartTue Nov 13 22:18:40 2018
EndTue Nov 13 22:45:51 2018
Elapsed27 mins, 10 secs

All Changes:

:

  1. Change #102202

    Category None
    Changed by bors-servo <lbergstrom+borsohnoyoudont@mozilla.com>
    Changed at Tue 13 Nov 2018 22:18:40
    Repository https://github.com/servo/servo
    Project servo/servo
    Branch try-wpt
    Revision 8b47358a659c64cf89d53e73bbe94d0bffb71a25

    Comments

    Auto merge of #21804 - AgustinCB:unify-task-source-canceller-api, r=<try>
    
    Unify the task source and task canceller API
    
    To do so, I created a struct `TaskManagement(TaskSource,
    TaskCanceller)` and made `*_task_source` return that instead of just
    the task source.
    
    Next, I refactored all places in which `task_canceller` by basically
    removing them in favour of a previously called `*_task_source`.
    
    I tried to make `task_canceller` a private method in `Window`, with the
    hope of enforcing the use of `*_task_source`. However, it's used in
    components/script/dom/globalscope.rs:575 in such a way that will make it
    harder to avoid. I decided to leave it that way.
    
    It'd be possible to unify `*_task_source` in such a way that we would
    have only one method. However, I decided not to do it because one of the
    `TaskSource` implementations is special:
    `history_traversal_task_source`. Not wanting to over complicate things,
    I decided to leave the structure this way.
    
    ---
    - [x] `./mach build -d` does not report any errors
    - [x] `./mach test-tidy` does not report any errors
    - [x] These changes fix #21154 (github issue number if applicable).
    
    - [x] These changes do not require tests because it's refactoring code that should already be tested.
    
    <!-- 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/21804)
    <!-- Reviewable:end -->

    Changed files

    • components/profile/time.rs
    • components/profile_traits/time.rs
    • components/script/dom/analysernode.rs
    • components/script/dom/audiocontext.rs
    • components/script/dom/audioscheduledsourcenode.rs
    • components/script/dom/baseaudiocontext.rs
    • components/script/dom/document.rs
    • components/script/dom/globalscope.rs
    • components/script/dom/htmldetailselement.rs
    • components/script/dom/htmldialogelement.rs
    • components/script/dom/htmlformelement.rs
    • components/script/dom/htmliframeelement.rs
    • components/script/dom/htmlimageelement.rs
    • components/script/dom/htmlinputelement.rs
    • components/script/dom/htmlmediaelement.rs
    • components/script/dom/htmlscriptelement.rs
    • components/script/dom/htmlstyleelement.rs
    • components/script/dom/htmltextareaelement.rs
    • components/script/dom/offlineaudiocontext.rs
    • components/script/dom/storage.rs
    • components/script/dom/textcontrol.rs
    • components/script/dom/window.rs
    • components/script/layout_image.rs
    • components/script/lib.rs
    • components/script/script_runtime.rs
    • components/script/script_thread.rs
    • components/script/stylesheet_loader.rs
    • components/script/task_manager.rs
    • components/script/task_source/history_traversal.rs