Compare commits

..

1 Commits

Author SHA1 Message Date
6deb58fc27 Add CI
All checks were successful
Linux arm64 / Build (push) Successful in 6m36s
Co-authored-by: Persson-dev <sim16.prib@gmail.com>
Co-committed-by: Persson-dev <sim16.prib@gmail.com>
2025-12-07 17:00:05 +00:00
2 changed files with 7 additions and 3 deletions

View File

@@ -35,7 +35,11 @@ jobs:
python -m build -w
- name: Install wheel
run: pip install dist/*
run: |
source .venv/bin/activate
pip install dist/*
- name: Test
run: python example_add.py
run: |
source .venv/bin/activate
python example_add.py

View File

@@ -1,5 +1,5 @@
add_rules("mode.release", "mode.debug")
add_requires("python 3.12.3", "pybind11")
add_requires("pybind11")
target("example")
set_prefixdir("$(prefixdir)/$(pythondir)", { libdir = "" })