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

Builder linux-rel-css Build #4127

Results:

Build successful

SourceStamp:

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

BuildSlave:

servo-linux3

Reason:

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

Steps and Logfiles:

  1. git update ( 4 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 ...' ( 7 secs )
    1. stdio
  6. compile ran build --release --with-debug-assertions warnings ( 15 mins, 35 secs )
    1. warnings (1)
  7. test ran test-css --release --processes 16 --always-succeed ( 12 mins, 28 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 warnings ( 35 secs )
    1. stdio
    2. warnings (1)
  10. compile__2 ran build-geckolib --release ( 5 mins, 31 secs )
    1. stdio
  11. test__1 ran test-stylo --release ( 6 mins, 28 secs )
    1. - no logs -
  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 4127 Build
codebase Build
got_revision b0976566fb9c79f7dc67b2ac808eb50ef4ad653f Git
project servo/servo Build
repository https://github.com/servo/servo Build
revision b0976566fb9c79f7dc67b2ac808eb50ef4ad653f Build
scheduler servo-auto Scheduler
slavename servo-linux3 BuildSlave
warnings-count 2 WarningCountingShellCommand
workdir /home/servo/buildbot/slave/linux-rel-css slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. bors-servo

Timing:

StartFri May 19 06:16:37 2017
EndFri May 19 06:57:30 2017
Elapsed40 mins, 53 secs

All Changes:

:

  1. Change #47977

    Category None
    Changed by bors-servo <lbergstrom+borsohnoyoudont@mozilla.com>
    Changed at Fri 19 May 2017 06:16:36
    Repository https://github.com/servo/servo
    Project servo/servo
    Branch auto
    Revision b0976566fb9c79f7dc67b2ac808eb50ef4ad653f

    Comments

    Auto merge of #16893 - MortimerGoro:webgl_extensions, r=emilio
    
    Implement WebGL extensions
    
    <!-- Please describe your changes on the following line: -->
    
    This PR provides the base for implementing WebGL extensions. It comes with the following ones already implemented and passing all related WebGL conformance tests:
    
    - OES_texture_float
    - OES_texture_float_linear
    - OES_texture_half_float
    - OES_texture_half_float_linear
    - OES_vertex_array_object
    
    I'll submit other extensions like compressed textures in a separate PR to ease the review process. I included the 5 extensions in this PR because it's easier to show/review how the WebGL extension base works.
    
    To pass all OES_texture_float_xxx tests I had to add some missing format conversions in WebGLRenderingContext.rs
    
    ---
    <!-- 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: -->
    - [x] There are tests for these changes OR
    - [ ] 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/16893)
    <!-- Reviewable:end -->

    Changed files

    • Cargo.lock
    • components/script/Cargo.toml
    • components/script/dom/bindings/trace.rs
    • components/script/dom/mod.rs
    • components/script/dom/webgl_extensions/ext/mod.rs
    • components/script/dom/webgl_extensions/ext/oestexturefloat.rs
    • components/script/dom/webgl_extensions/ext/oestexturefloatlinear.rs
    • components/script/dom/webgl_extensions/ext/oestexturehalffloat.rs
    • components/script/dom/webgl_extensions/ext/oestexturehalffloatlinear.rs
    • components/script/dom/webgl_extensions/ext/oesvertexarrayobject.rs
    • components/script/dom/webgl_extensions/ext/webglvertexarrayobjectoes.rs
    • components/script/dom/webgl_extensions/extension.rs
    • components/script/dom/webgl_extensions/extensions.rs
    • components/script/dom/webgl_extensions/mod.rs
    • components/script/dom/webgl_extensions/wrapper.rs
    • components/script/dom/webgl_validations/types.rs
    • components/script/dom/webglbuffer.rs
    • components/script/dom/webglrenderingcontext.rs
    • components/script/dom/webgltexture.rs
    • components/script/dom/webidls/OESTextureFloat.webidl
    • components/script/dom/webidls/OESTextureFloatLinear.webidl
    • components/script/dom/webidls/OESTextureHalfFloat.webidl
    • components/script/dom/webidls/OESTextureHalfFloatLinear.webidl
    • components/script/dom/webidls/OESVertexArrayObject.webidl
    • components/script/dom/webidls/WebGLRenderingContext.webidl
    • components/script/dom/webidls/WebGLVertexArrayObjectOES.webidl
    • components/script/lib.rs
    • python/tidy/servo_tidy/tidy.py
    • tests/wpt/metadata/webgl/conformance-1.0.3/conformance/context/methods.html.ini
    • tests/wpt/metadata/webgl/conformance-1.0.3/conformance/extensions/oes-texture-float-linear.html.ini
    • tests/wpt/metadata/webgl/conformance-1.0.3/conformance/extensions/oes-texture-float-with-canvas.html.ini
    • tests/wpt/metadata/webgl/conformance-1.0.3/conformance/extensions/oes-texture-float-with-image-data.html.ini
    • tests/wpt/metadata/webgl/conformance-1.0.3/conformance/extensions/oes-texture-float-with-image.html.ini
    • tests/wpt/metadata/webgl/conformance-1.0.3/conformance/extensions/oes-texture-float.html.ini
    • tests/wpt/metadata/webgl/conformance-1.0.3/conformance/extensions/oes-texture-half-float-linear.html.ini
    • tests/wpt/metadata/webgl/conformance-1.0.3/conformance/extensions/oes-texture-half-float-with-canvas.html.ini
    • tests/wpt/metadata/webgl/conformance-1.0.3/conformance/extensions/oes-texture-half-float-with-image-data.html.ini
    • tests/wpt/metadata/webgl/conformance-1.0.3/conformance/extensions/oes-texture-half-float-with-video.html.ini
    • tests/wpt/metadata/webgl/conformance-1.0.3/conformance/extensions/oes-texture-half-float.html.ini
    • tests/wpt/metadata/webgl/conformance-1.0.3/conformance/textures/tex-image-with-format-and-type.html.ini