From 0979c93cd1628c308e3e7a9a0e9132b26371cd20 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Mon, 8 Feb 2021 20:34:58 -0300 Subject: [PATCH] Added plain KiCad to the nightly. The nightly doesn't work if KiCad isn't installed. Don't know the reason. --- Dockerfile-nightly | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile-nightly b/Dockerfile-nightly index 703d154..b897cd0 100644 --- a/Dockerfile-nightly +++ b/Dockerfile-nightly @@ -5,6 +5,9 @@ LABEL Description="KiCad with KiBot and other automation scripts" RUN sed -i -e's/ main/ main contrib non-free/g' /etc/apt/sources.list && \ apt-get update && \ apt-get -y install make wget curl rar bzip2 && \ + wget https://launchpad.net/~kicad/+archive/ubuntu/kicad-5.1-releases/+files/kicad_5.1.9-202012230806+73d0e3b20d~88~ubuntu20.10.1_amd64.deb && \ + apt-get -y install liboce-foundation11 liboce-modeling11 liboce-ocaf-lite11 liboce-ocaf11 liboce-visualization11 libgl2ps1.4 && \ + dpkg -i /kicad_5.1.*.deb && \ curl -s https://api.github.com/repos/INTI-CMNB/KiAuto/releases/latest | grep "browser_download_url.*deb" | cut -d : -f 2,3 | tr -d \" | wget -i - && \ curl -s https://api.github.com/repos/INTI-CMNB/KiBoM/releases/latest | grep "browser_download_url.*deb" | cut -d : -f 2,3 | tr -d \" | wget -i - && \ curl -s https://api.github.com/repos/INTI-CMNB/InteractiveHtmlBom/releases/latest | grep "browser_download_url.*deb" | cut -d : -f 2,3 | tr -d \" | wget -i - && \