[Tools] Added script to install dev. KiAuto

This commit is contained in:
Salvador E. Tropea 2022-08-11 18:21:53 -03:00
parent 5785fd3e0f
commit 3f6a08e46c
1 changed files with 17 additions and 0 deletions

17
tools/install_kiauto_git.sh Executable file
View File

@ -0,0 +1,17 @@
#!/bin/sh
# Install KiAuto from GitHub repo, for CI/CD (needs root)
# Remove KiAuto
dpkg --remove kiauto
# Install KiAuto@master
curl https://codeload.github.com/INTI-CMNB/KiAuto/zip/refs/heads/master --output pp.zip
unzip pp.zip
pip3 install KiAuto-master/
# Clean the downloaded stuff
rm -rf KiAuto-master/ pp.zip
# Check what we got
echo $PATH
ls -la /usr/bin/*_do || true
ls -la /usr/local/bin/*_do || true
which pcbnew_do
pcbnew_do --version