[CI/CD] Switching the development images to dev KiAuto

- So now we can test the interposer
This commit is contained in:
Salvador E. Tropea 2022-07-30 14:49:44 -03:00
parent 2eaaaf66e4
commit 19789cb6a3
2 changed files with 10 additions and 2 deletions

View File

@ -2,7 +2,7 @@ FROM setsoft/kicad_auto:latest
MAINTAINER Salvador E. Tropea <stropea@inti.gob.ar>
LABEL Description="KiCad 5 with KiBot and other automation scripts"
RUN dpkg --remove kicost kibot && \
RUN dpkg --remove kicost kibot kiauto && \
apt-get update && \
apt-get -y install --no-install-recommends -t buster-backports python3-pip unzip curl python3-setuptools python3-wheel && \
curl https://codeload.github.com/INTI-CMNB/KiBot/zip/refs/heads/master --output pp.zip && \
@ -13,5 +13,9 @@ RUN dpkg --remove kicost kibot && \
unzip pp.zip && \
pip3 install KiCost-master/ && \
rm -rf KiCost-master pp.zip && \
curl https://codeload.github.com/INTI-CMNB/KiAuto/zip/refs/heads/kicad_interposer --output pp.zip && \
unzip pp.zip && \
pip3 install KiAuto-kicad_interposer/ && \
rm -rf KiAuto-kicad_interposer/ pp.zip && \
apt-get -y remove curl python3-pip unzip python3-setuptools python3-wheel && \
rm -rf /var/lib/apt/lists/*

View File

@ -2,7 +2,7 @@ FROM setsoft/kicad_auto:ki6
MAINTAINER Salvador E. Tropea <stropea@inti.gob.ar>
LABEL Description="KiCad 6 with KiBot and other automation scripts"
RUN dpkg --remove kicost kibot && \
RUN dpkg --remove kicost kibot kiauto && \
apt-get update && \
apt-get -y install --no-install-recommends -t bullseye-backports python3-pip unzip curl python3-setuptools python3-wheel && \
curl https://codeload.github.com/INTI-CMNB/KiBot/zip/refs/heads/master --output pp.zip && \
@ -13,6 +13,10 @@ RUN dpkg --remove kicost kibot && \
unzip pp.zip && \
pip3 install KiCost-master/ && \
rm -rf KiCost-master pp.zip && \
curl https://codeload.github.com/INTI-CMNB/KiAuto/zip/refs/heads/kicad_interposer --output pp.zip && \
unzip pp.zip && \
pip3 install KiAuto-kicad_interposer/ && \
rm -rf KiAuto-kicad_interposer/ pp.zip && \
apt-get -y remove curl python3-pip unzip python3-setuptools python3-wheel && \
rm -rf /var/lib/apt/lists/*