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

Fix macOS TravisCI builds #188

Merged
merged 3 commits into from Jun 25, 2019
Travis CI / Travis CI - Branch failed Jun 24, 2019 in 21m 20s

Build Failed

The build failed.

Details

This is a normal build for the jdm-patch-11 branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build has 12 jobs, running in parallel.

Job Rust ENV OS State
1017.1 nightly \["FEATURES=\\"\\""\] Linux passed
1017.2 nightly \["FEATURES=\\"--features debugmozjs\\""\] Linux passed
1017.3 nightly \["FEATURES=\\"\\""\] macOS failed
1017.4 nightly \["FEATURES=\\"--features debugmozjs\\""\] macOS failed
1017.5 beta \["FEATURES=\\"\\""\] Linux passed
1017.6 beta \["FEATURES=\\"--features debugmozjs\\""\] Linux passed
1017.7 beta \["FEATURES=\\"\\""\] macOS failed
1017.8 beta \["FEATURES=\\"--features debugmozjs\\""\] macOS failed
1017.9 stable \["FEATURES=\\"\\""\] Linux passed
1017.10 stable \["FEATURES=\\"--features debugmozjs\\""\] Linux passed
1017.11 stable \["FEATURES=\\"\\""\] macOS failed
1017.12 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 xcode9.3
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",
        "llvm-toolchain-xenial-5.0"
      ],
      "packages": [
        "autoconf2.13",
        "gcc-6",
        "g++-6",
        "clang-5.0"
      ]
    },
    "homebrew": {
      "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 --lib --verbose $FEATURES",
    "ccache -s"
  ],
  ".result": "configured",
  "language": "rust",
  "osx_image": "xcode9.3",
  "before_script": [
    "if [[ \"$TRAVIS_OS_NAME\" == \"linux\" ]]; then export CC=gcc-6; export CXX=g++-6; fi",
    "if [[ \"$TRAVIS_OS_NAME\" == \"osx\" ]]; then export PYTHON3=\"/usr/local/opt/python/bin/python3\"; fi"
  ]
}
You can’t perform that action at this time.