Skip to content

Commit

Permalink
[CI/CD] No git KiCost on KiCad 8 dev images
Browse files Browse the repository at this point in the history
For some bizarre reason fails to install, isn't really needed right now
  • Loading branch information
set-soft committed Mar 26, 2024
1 parent 697585e commit 60dad31
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
9 changes: 2 additions & 7 deletions tools/dev_image_k8/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,19 +1,14 @@
FROM ghcr.io/inti-cmnb/kicad_auto:ki8
MAINTAINER Salvador E. Tropea <[email protected]>
LABEL Description="KiCad 7 with KiBot and other automation scripts"
LABEL Description="KiCad 8 with KiBot and other automation scripts (development)"

RUN dpkg --remove kicost kibot && \
RUN dpkg --remove kibot && \
apt-get update && \
apt-get -y install --no-install-recommends curl unzip python3-pip && \
curl https://codeload.github.com/INTI-CMNB/KiBot/zip/refs/heads/dev --output pp.zip && \
unzip pp.zip && \
pip3 install --break-system-packages --no-compile KiBot-dev/ && \
rm -rf KiBot-dev pp.zip && \
curl https://codeload.github.com/hildogjr/KiCost/zip/refs/heads/master --output pp.zip && \
unzip pp.zip && \
pip3 install --break-system-packages KiCost-master/ && \
apt-get -y remove curl unzip python3-pip && \
rm -rf KiCost-master pp.zip && \
rm -rf /var/lib/apt/lists/*

# kidiff depends on KiAuto
Expand Down
6 changes: 1 addition & 5 deletions tools/dev_image_k8f/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,12 @@ FROM ghcr.io/inti-cmnb/kicad_auto_test:ki8
MAINTAINER Salvador E. Tropea <[email protected]>
LABEL Description="KiCad 8 with KiBot and other automation scripts"

RUN dpkg --remove kicost kibot && \
RUN dpkg --remove kibot && \
apt-get update && \
curl https://codeload.github.com/INTI-CMNB/KiBot/zip/refs/heads/dev --output pp.zip && \
unzip pp.zip && \
pip3 install --break-system-packages --no-compile KiBot-dev/ && \
rm -rf KiBot-dev pp.zip && \
curl https://codeload.github.com/hildogjr/KiCost/zip/refs/heads/master --output pp.zip && \
unzip pp.zip && \
pip3 install --break-system-packages KiCost-master/ && \
rm -rf KiCost-master pp.zip && \
rm -rf /var/lib/apt/lists/*

# kidiff depends on KiAuto
Expand Down

0 comments on commit 60dad31

Please sign in to comment.