Skip to content

Commit

Permalink
Add build job ubuntu-llvm-15
Browse files Browse the repository at this point in the history
  • Loading branch information
kazarmy committed Dec 2, 2023
1 parent 39c4c75 commit b2518d1
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 2 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,43 @@ jobs:
with:
name: wheels
path: wheelhouse/*.whl

ubuntu-llvm-15:
runs-on: ubuntu-22.04

steps:
- name: Checkout rz-bindgen
uses: actions/checkout@v3

- name: Checkout rizin
uses: actions/checkout@v3
with:
repository: rizinorg/rizin
path: rizin
fetch-depth: 2

- name: Install dependencies
run: |
sudo apt update
sudo apt-get --assume-yes install cmake swig pkg-config clang-15 libclang-15-dev llvm-15 wget unzip python3-wheel python3-setuptools build-essential python3-pip && sudo pip3 install meson ninja
- name: Install rizin
run: |
export PATH=$PATH:/usr/local/bin
meson setup --prefix=/usr --buildtype=release build && ninja -C build && sudo ninja -C build install
working-directory: rizin

- name: Build rz-bindgen
run: |
meson setup --prefix=/usr -Dplugin=enabled build
meson compile -C build
sudo meson install -C build
working-directory: rz-bindgen

- name: Test python lang plugin
run: rizin -qc "Ll" | grep "Python SWIG"

- name: Test rizin.py
run: |
echo "import rizin" > testimport.py
python3 testimport.py
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ target_sphinx = targets.contains('sphinx')
doxygen_path = get_option('doxygen_path')

if clang_path == ''
llvm_config = find_program('llvm-config', 'llvm-config-7', required: false)
llvm_config = find_program('llvm-config', 'llvm-config-15', 'llvm-config-7', required: false)
if llvm_config.found()
clang_path = run_command(llvm_config, '--libdir', check: true).stdout().strip()
elif build_machine.system() == 'darwin'
Expand All @@ -46,7 +46,7 @@ if rizin_include_path == ''
endif

if clang_args == ''
clang = find_program('clang', 'clang-7', required: false)
clang = find_program('clang', 'clang-15', 'clang-7', required: false)
if clang.found()
clang_args += ' -resource-dir='
clang_args += '"' + run_command(clang, '-print-resource-dir', check: true).stdout().strip() + '"'
Expand Down

0 comments on commit b2518d1

Please sign in to comment.