From cb67de412c9d4637d9abeea826c281ac2594eb97 Mon Sep 17 00:00:00 2001 From: "Ricardo (XenGi) Band" Date: Sun, 7 Feb 2021 20:38:00 +0100 Subject: fixed various typos --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8934fad..03a96ff 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,9 +13,9 @@ debian_10: - "apt-get update" - "apt-get upgrade --no-install-recommends --assume-yes" - "apt-get install --no-install-recommends --assume-yes libopencv-dev libpugixml-dev libpangocairo-1.0-0 libpango1.0-dev libcairo2-dev clang make python3 git python3-wheel curl python3-pip python3-setuptools $GERBOLYZE_DEPS $PCB_TOOLSEXT_DEPS" - - "curl --proto '=https' --tlsv1.2 -sSf -o rustup.sh https://sh.rustup.rs > /tmp/rustup.sh" - - "chmod +x /tmp/rustup.sh" - - "/tmp/rustup.sh -y --default-toolchain stable" + - "curl --proto '=https' --tlsv1.2 -sSf -o rustup.sh https://sh.rustup.rs > rustup.sh" + - "chmod +x rustup.sh" + - "./rustup.sh -y --default-toolchain stable" - "source $HOME/.cargo/env" - "cargo install usvg" - "pip3 install --user git+https://git.jaseg.de/pcb-tools-extension.git" @@ -37,7 +37,7 @@ fedora_33: stage: build image: fedora:33 script: - - "dnf --nodocs --assumeyes --refresh install python3 python3-pip git make clang opencv-devel pugixml-devel pango-devel cairo-devel rust cargo GERBOLYZE_DEPS $PCB_TOOLSEXT_DEPS" + - "dnf --nodocs --assumeyes --refresh install python3 python3-pip git make clang opencv-devel pugixml-devel pango-devel cairo-devel rust cargo $GERBOLYZE_DEPS $PCB_TOOLSEXT_DEPS" - "cargo install usvg" - "export PATH=$HOME/.cargo/bin:$PATH" - "pip3 install --user git+https://git.jaseg.de/pcb-tools-extension.git" -- cgit