ci: install libsqlcipher-dev before pip deps on GitHub CI
Some checks failed
CI / Backend (Python) (push) Successful in 1m23s
CI / Frontend (Vue) (push) Successful in 22s
Mirror / mirror (push) Failing after 8s

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:
pyr0ball 2026-07-06 02:44:54 -07:00
parent 6dcf6d0645
commit 874628ce24

View file

@ -22,6 +22,9 @@ jobs:
python-version: '3.12' python-version: '3.12'
cache: pip cache: pip
- name: Install system dependencies
run: sudo apt-get install -y libsqlcipher-dev
- name: Install circuitforge-core - name: Install circuitforge-core
run: pip install git+https://git.opensourcesolarpunk.com/Circuit-Forge/circuitforge-core.git@main run: pip install git+https://git.opensourcesolarpunk.com/Circuit-Forge/circuitforge-core.git@main