aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo (XenGi) Band <email@ricardo.band>2021-02-07 20:38:00 +0100
committerRicardo (XenGi) Band <email@ricardo.band>2021-02-07 20:38:00 +0100
commitcb67de412c9d4637d9abeea826c281ac2594eb97 (patch)
treee8bef2f99bb68f1caa1890b225e436167b540ddb
parentf52dea8eaca912d5cce05a6edd196ab7f0bf3df5 (diff)
downloadgerbolyze-cb67de412c9d4637d9abeea826c281ac2594eb97.tar.gz
gerbolyze-cb67de412c9d4637d9abeea826c281ac2594eb97.tar.bz2
gerbolyze-cb67de412c9d4637d9abeea826c281ac2594eb97.zip
fixed various typos
-rw-r--r--.gitlab-ci.yml8
1 files 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"