In angle, don't call glFinish to synchronize surfaces built from D3D11 textures #170
+21
−13
Travis CI / Travis CI - Pull Request
succeeded
Apr 4, 2020
in
6m 12s
Build Passed
The build passed, just like the previous build.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #170 In angle, don't call glFinish to synchronize surfaces built from D3D11 textures.
Any changes that have been made to the master branch before the build ran are also included.
Jobs and Stages
This build has six jobs, running in parallel.
| Job | Rust | OS | State |
|---|---|---|---|
| nightly | Linux | passed | |
| stable | Linux | passed | |
| nightly | macOS | passed | |
| stable | macOS | passed | |
| nightly | windows | passed | |
| stable | windows | passed |
Build Configuration
| Build Option | Setting |
|---|---|
| Language | Rust |
| Operating System | Linux (Xenial), macOS, windows |
| Rust Versions | nightly, stable |
Build Configuration
{
"language": "rust",
"os": [
"linux",
"osx",
"windows"
],
"dist": "xenial",
"rust": [
"nightly",
"stable"
],
"sudo": false,
"notifications": {
"webhooks": [
{
"urls": [
"https://build.servo.org:54856/travis"
]
}
]
},
"addons": {
"apt": {
"sources": [
{
"name": "ubuntu-toolchain-r-test"
}
],
"packages": [
"gcc-4.8",
"g++-4.8",
"libxxf86vm-dev",
"libosmesa6-dev",
"libgles2-mesa-dev",
"gcc-arm-linux-androideabi"
]
}
},
"before_install": [
"if [ \"$TRAVIS_OS_NAME\" = \"linux\" ]; then export CXX=g++-4.8; rustup target add arm-linux-androideabi; fi"
],
"script": [
"cd surfman",
"cargo build --verbose",
"cargo build --verbose --features=sm-angle-default",
"cargo build --verbose --features=sm-wayland-default",
"cargo build --verbose --features=sm-winit",
"rustup target add arm-linux-androideabi",
"cargo build --verbose --target=arm-linux-androideabi",
"rustup target add aarch64-pc-windows-msvc",
"cargo build --verbose --target=aarch64-pc-windows-msvc",
"if [ $TRAVIS_RUST_VERSION == \"nightly\" ]; then rustup component add rust-src --target=aarch64-uwp-windows-msvc; fi",
"if [ $TRAVIS_RUST_VERSION == \"nightly\" ]; then cargo build -Z build-std --verbose --target=aarch64-uwp-windows-msvc; fi"
]
}