Prevent initializing and shutting down SpiderMonkey from different threads #487
+60
−21
Travis CI / Travis CI - Pull Request
failed
Nov 23, 2019
in
29m 30s
Build Failed
The build failed. This is a change from the previous build, which passed.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #487 Prevent initializing and shutting down SpiderMonkey from different threads.
Any changes that have been made to the master branch before the build ran are also included.
Jobs and Stages
This build has 12 jobs, running in parallel.
| Job | Rust | ENV | OS | State |
|---|---|---|---|---|
| nightly | FEATURES="" | Linux | failed | |
| beta | FEATURES="" | Linux | failed | |
| stable | FEATURES="" | Linux | failed | |
| nightly | FEATURES="--features debugmozjs" | Linux | failed | |
| beta | FEATURES="--features debugmozjs" | Linux | failed | |
| stable | FEATURES="--features debugmozjs" | Linux | failed | |
| nightly | FEATURES="" | macOS | failed | |
| beta | FEATURES="" | macOS | failed | |
| stable | FEATURES="" | macOS | failed | |
| nightly | FEATURES="--features debugmozjs" | macOS | failed | |
| beta | FEATURES="--features debugmozjs" | macOS | failed | |
| stable | FEATURES="--features debugmozjs" | macOS | failed |
Build Configuration
| Build Option | Setting |
|---|---|
| Language | Rust |
| Operating System | Linux (Xenial), macOS |
| Rust Versions | nightly, beta, stable |
| Xcode Version | xcode11 |
Build Configuration
{
"os": [
"linux",
"osx"
],
"env": [
"FEATURES=\"\"",
"FEATURES=\"--features debugmozjs\""
],
"dist": "xenial",
"rust": [
"nightly",
"beta",
"stable"
],
"sudo": 9000,
"cache": "ccache",
"group": "stable",
"addons": {
"apt": {
"sources": [
"ubuntu-toolchain-r-test"
],
"packages": [
"autoconf2.13",
"clang"
]
},
"homebrew": {
"update": true,
"packages": [
"python",
"python@2",
"autoconf@2.13",
"ccache",
"llvm",
"yasm"
]
}
},
"script": [
"ccache -z",
"CCACHE=$(which ccache) travis_wait 30 cargo build --verbose $FEATURES",
"CCACHE=$(which ccache) RUST_BACKTRACE=1 cargo test --verbose $FEATURES",
"ccache -s"
],
".result": "configured",
"language": "rust",
"osx_image": "xcode11",
"before_script": [
"if [[ \"$TRAVIS_OS_NAME\" == \"linux\" ]]; then export CC=clang; export CXX=clang++; fi",
"if [[ \"$TRAVIS_OS_NAME\" == \"osx\" ]]; then export PYTHON3=\"/usr/local/opt/python/bin/python3\"; fi"
]
}