fixed various typos

This commit is contained in:
Ricardo (XenGi) Band 2021-02-07 20:38:00 +01:00
parent f52dea8eac
commit cb67de412c

View file

@ -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"