Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support surfaceless back end on Linux #157

Merged
merged 1 commit into from Mar 27, 2020

Support surfaceless back end on Linux

4c54523
Select commit
Merged
Travis CI / Travis CI - Pull Request succeeded Mar 26, 2020 in 6m 58s

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 #157 Support surfaceless back end on Linux.
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
759.1 nightly Linux passed
759.2 stable Linux passed
759.3 nightly macOS passed
759.4 stable macOS passed
759.5 nightly windows passed
759.6 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,
  "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"
  ]
}
You can’t perform that action at this time.