From 3f6a08e46ccbfafb94b0294bbf422258fa83f69a Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Thu, 11 Aug 2022 18:21:53 -0300 Subject: [PATCH] [Tools] Added script to install dev. KiAuto --- tools/install_kiauto_git.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 tools/install_kiauto_git.sh diff --git a/tools/install_kiauto_git.sh b/tools/install_kiauto_git.sh new file mode 100755 index 00000000..4e88df73 --- /dev/null +++ b/tools/install_kiauto_git.sh @@ -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