Use cmake_package to link against LLVM #197
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
working-dir: ./bindings/python | |
NYXSTONE_LLVM_PREFIX: "/usr/lib/llvm-15/" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Packages | |
run: | | |
sudo apt-get update | |
sudo apt-get install zlib1g-dev libzstd-dev llvm-15 llvm-15-dev | |
- name: Build | |
run: pip install . | |
working-directory: ${{ env.working-dir }} | |
- name: Test | |
run: python tests/test.py | |
working-directory: ${{ env.working-dir }} |