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

Set "asm.arch" before the call to SleighIDFromCore #330

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from

Set "asm.arch" before the call to `SleighIDFromCore`

71f142f
Select commit
Loading
Failed to load commit list.
Open

Set "asm.arch" before the call to SleighIDFromCore #330

Set "asm.arch" before the call to `SleighIDFromCore`
71f142f
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed Sep 26, 2023 in 12m 10s

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 #330 Set "asm.arch" before the call to SleighIDFromCore.
Any changes that have been made to the dev branch before the build ran are also included.

Jobs and Stages

This build has four jobs, running in parallel.

Job ENV OS State
589.1 X86_64 INSTALL_PREFIX=$TRAVIS_BUILD_DIR/rizin-prefix Linux failed
589.2 S390X INSTALL_PREFIX=$TRAVIS_BUILD_DIR/rizin-prefix Linux failed
589.3 PPC64 INSTALL_PREFIX=$TRAVIS_BUILD_DIR/rizin-prefix Linux failed
589.4 ARM64 INSTALL_PREFIX=$TRAVIS_BUILD_DIR/rizin-prefix Linux failed

Build Configuration

Build Option Setting
Language C++
Operating System Linux (Xenial)
Build Configuration
{
  "language": "cpp",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "branches": {
    "only": [
      "dev",
      "stable"
    ]
  },
  "jobs": {
    "fast_finish": true,
    "include": [
      {
        "os": "linux",
        "name": "X86_64",
        "dist": "jammy"
      },
      {
        "os": "linux",
        "name": "S390X",
        "arch": "s390x",
        "dist": "jammy"
      },
      {
        "os": "linux",
        "name": "PPC64",
        "arch": "ppc64le",
        "dist": "jammy"
      },
      {
        "os": "linux",
        "name": "ARM64",
        "arch": "arm64",
        "dist": "jammy"
      }
    ]
  },
  "addons": {
    "apt": {
      "packages": [
        "python3-pip",
        "python3-setuptools",
        "ninja-build",
        "qtbase5-dev",
        "libgl1-mesa-dev"
      ]
    }
  },
  "env": [
    "jobs={:INSTALL_PREFIX=>\"$TRAVIS_BUILD_DIR/rizin-prefix\"}"
  ],
  "install": [
    "pip3 install meson",
    "git clone --depth 1 https://github.com/rizinorg/rizin",
    "cd rizin && mkdir build && cd build",
    "meson --prefix=\"$INSTALL_PREFIX\" ..",
    "ninja",
    "ninja install",
    "cd ../.."
  ],
  "script": [
    "mkdir build && cd build",
    "cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=\"$TRAVIS_BUILD_DIR/rizin-prefix\" -DCMAKE_INSTALL_PREFIX=\"$INSTALL_PREFIX\" -DBUILD_CUTTER_PLUGIN=OFF -DBUILD_SLEIGH_PLUGIN=ON ..",
    "make -j4",
    "make install",
    "export LD_LIBRARY_PATH=\"$INSTALL_PREFIX/lib:$INSTALL_PREFIX/lib/x86_64-linux-gnu:$LD_LIBRARY_PATH\"",
    "export PATH=\"$INSTALL_PREFIX/bin:$PATH\"",
    "export RZ_LIBR_PLUGINS=\"$INSTALL_PREFIX/share/rizin/plugins\"",
    "cd ../test",
    "make"
  ]
}