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 tricore support #352

Merged
merged 1 commit into from
May 4, 2024

Add tricore support

6047388
Select commit
Loading
Failed to load commit list.
Merged

Add tricore support #352

Add tricore support
6047388
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded May 3, 2024 in 25m 41s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #352 Add tricore support.
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
628.1 X86_64 INSTALL_PREFIX=$TRAVIS_BUILD_DIR/rizin-prefix Linux passed
628.2 S390X INSTALL_PREFIX=$TRAVIS_BUILD_DIR/rizin-prefix Linux passed
628.3 PPC64 INSTALL_PREFIX=$TRAVIS_BUILD_DIR/rizin-prefix Linux passed
628.4 ARM64 INSTALL_PREFIX=$TRAVIS_BUILD_DIR/rizin-prefix Linux passed

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"
  ]
}