Update euclid. #144
+6
−6
Merged
Update euclid. #144
Travis CI / Travis CI - Branch
succeeded
Jul 22, 2019
in
2m 54s
Build Passed
The build passed.
Details
This is a normal build for the euclidup branch. You should be able to reproduce it by checking out the branch locally.
Jobs and Stages
This build has two jobs, running in parallel.
| Job | OS | State |
|---|---|---|
| Linux | passed | |
| macOS | passed |
Build Configuration
| Build Option | Setting |
|---|---|
| Language | Rust |
| Operating System | Linux (Trusty), macOS |
| Rust Version | nightly |
Build Configuration
{
"os": [
"linux",
"osx"
],
"dist": "trusty",
"rust": "nightly",
"sudo": false,
"group": "stable",
"addons": {
"apt": {
"sources": [
"ubuntu-toolchain-r-test"
],
"packages": [
"gcc-4.8",
"g++-4.8",
"libxxf86vm-dev",
"libosmesa6-dev",
"libgles2-mesa-dev",
"gcc-arm-linux-androideabi"
]
}
},
"script": [
"cargo build --verbose",
"if [ \"$TRAVIS_OS_NAME\" != \"linux\" ]; then cargo test --verbose; fi",
"if [ \"$TRAVIS_OS_NAME\" == \"linux\" ]; then cargo build --verbose --target=arm-linux-androideabi; fi"
],
".result": "configured",
"language": "rust",
"before_install": [
"if [ \"$TRAVIS_OS_NAME\" = \"linux\" ]; then export CXX=g++-4.8; rustup target add arm-linux-androideabi; fi"
]
}