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

Add CI for x64->x86 cross-compilation #461

Merged
merged 5 commits into from Apr 30, 2019
Travis CI / Travis CI - Pull Request cancelled Apr 29, 2019 in 13m 17s

Build Canceled

The build canceled. 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 #461 Add CI for x64->x86 cross-compilation.
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
979.1 nightly \["FEATURES=\\"\\""\] Linux canceled
979.2 beta \["FEATURES=\\"\\""\] Linux canceled
979.3 stable \["FEATURES=\\"\\""\] Linux canceled
979.4 nightly \["FEATURES=\\"--features debugmozjs\\""\] Linux canceled
979.5 beta \["FEATURES=\\"--features debugmozjs\\""\] Linux canceled
979.6 stable \["FEATURES=\\"--features debugmozjs\\""\] Linux canceled
979.7 nightly \["FEATURES=\\"\\""\] macOS canceled
979.8 beta \["FEATURES=\\"\\""\] macOS canceled
979.9 stable \["FEATURES=\\"\\""\] macOS canceled
979.10 nightly \["FEATURES=\\"--features debugmozjs\\""\] macOS canceled
979.11 beta \["FEATURES=\\"--features debugmozjs\\""\] macOS canceled
979.12 stable \["FEATURES=\\"--features debugmozjs\\""\] macOS canceled

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",
        "g++-6",
        "clang-5.0"
      ]
    }
  },
  "script": [
    "ccache -z",
    "CCACHE=$(which ccache) travis_wait cargo build --verbose $FEATURES",
    "CCACHE=$(which ccache) RUST_BACKTRACE=1 cargo test --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 brew update; brew install autoconf@2.13 ccache llvm yasm; fi"
  ]
}
You can’t perform that action at this time.