ci: install libsqlcipher-dev before pip deps on GitHub CI
pysqlcipher3 is a C extension that links against libsqlcipher — not present on ubuntu-latest by default. Mirrors what the Dockerfile already does. backup.py uses it for encrypted DB export but never in CI tests.
This commit is contained in:
parent
6dcf6d0645
commit
874628ce24
1 changed files with 3 additions and 0 deletions
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
|
|
@ -22,6 +22,9 @@ jobs:
|
|||
python-version: '3.12'
|
||||
cache: pip
|
||||
|
||||
- name: Install system dependencies
|
||||
run: sudo apt-get install -y libsqlcipher-dev
|
||||
|
||||
- name: Install circuitforge-core
|
||||
run: pip install git+https://git.opensourcesolarpunk.com/Circuit-Forge/circuitforge-core.git@main
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue