Travis CI / Travis CI - Pull Request
required action
Mar 25, 2020
in
18m 22s
Build Errored
The build errored, just like the previous build.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #80 Add fuzzing using cargo fuzz, add test for resulting bug.
Any changes that have been made to the master branch before the build ran are also included.
Jobs and Stages
This build has three jobs, running in parallel.
| Job | Rust | OS | State |
|---|---|---|---|
| stable | Linux | failed | |
| stable | macOS | errored | |
| stable | windows | failed |
Build Configuration
| Build Option | Setting |
|---|---|
| Language | Rust |
| Operating System | Linux (Xenial), macOS, windows |
| Rust Version | stable |
Build Configuration
{
"language": "rust",
"os": [
"linux",
"osx",
"windows"
],
"dist": "xenial",
"rust": [
"stable"
],
"cache": {
"cargo": true
},
"before_script": [
"if [ \"$TRAVIS_OS_NAME\" = \"osx\" ]; then cargo install --force cargo-audit ; fi",
"if [ \"$TRAVIS_OS_NAME\" = \"osx\" ]; then cargo generate-lockfile ; fi"
],
"script": [
"if [ \"$TRAVIS_OS_NAME\" = \"osx\" ]; then cargo audit ; fi",
"cargo test --verbose"
],
"jobs": {
"fast_finish": true
},
"group": "stable"
}