Allow all LLVM versions >= 15 and support dynamic linking #132
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" ] | |
env: | |
NYXSTONE_LLVM_PREFIX: "/usr/lib/llvm-18/" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
working-dir: ./bindings/python | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Packages | |
run: sudo apt-get update && sudo apt-get install llvm-18 llvm-18-dev zlib1g-dev libzstd-dev | |
- name: Build | |
run: pip install . | |
working-directory: ${{ env.working-dir }} | |
- name: Test | |
run: python tests/test.py | |
working-directory: ${{ env.working-dir }} |