chore(repo): baseline du fork input-remapper (upstream v2.2.1)
Le dépôt ne contenait que README.md ; ajout de l'intégralité du code fonctionnel du fork comme socle stable de la branche de release. L'état runtime d'orchestration (.ideai/) est exclu du suivi. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
15
scripts/ci-install-deps.sh
Executable file
15
scripts/ci-install-deps.sh
Executable file
@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env bash
|
||||
# Called from multiple CI pipelines in .github/workflows
|
||||
set -xeuo pipefail
|
||||
|
||||
sudo apt update
|
||||
|
||||
# native deps
|
||||
# gettext required to generate translations, others are python deps
|
||||
sudo apt-get install -y gettext python3-evdev python3-dasbus python3-pydantic python3-gi gir1.2-gtk-3.0 gir1.2-gtksource-4
|
||||
|
||||
# ensure pip and setuptools/wheel up to date so can install all pip modules
|
||||
sudo apt-get install python3-pip python3-wheel
|
||||
|
||||
# install test deps which aren't in pyproject.toml
|
||||
python -m pip install psutil pylint-pydantic
|
||||
Reference in New Issue
Block a user