Add C API dependencies installation to workflow #2
Workflow file for this run
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
# Test Qibolab C API | |
name: C API | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
# build dependencies | |
pip install cffi | |
# runtime dependencies | |
pip install . | |
- name: Build & install library | |
working-directory: ./capi | |
run: | | |
cmake -S . -B build | |
cmake --build build | |
cmake --install build | |
- name: Build & run example | |
working-directory: ./capi/example | |
run: | | |
make | |
./example |