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

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #358

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

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows

bb99047
Select commit
Loading
Failed to load commit list.
Open

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #358

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows
bb99047
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request cancelled Sep 4, 2024 in 6h 20m 44s

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 #358 Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows.
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
631.1 X86_64 INSTALL_PREFIX=$TRAVIS_BUILD_DIR/rizin-prefix Linux passed
631.2 S390X INSTALL_PREFIX=$TRAVIS_BUILD_DIR/rizin-prefix Linux errored
631.3 PPC64 INSTALL_PREFIX=$TRAVIS_BUILD_DIR/rizin-prefix Linux errored
631.4 ARM64 INSTALL_PREFIX=$TRAVIS_BUILD_DIR/rizin-prefix Linux canceled

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