From 729ec14b66a73d024e65b6070da6703feb6a25e4 Mon Sep 17 00:00:00 2001 From: "Ricardo (XenGi) Band" Date: Sun, 7 Feb 2021 19:28:21 +0100 Subject: use help message instead of version --- .gitlab-ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e2b6196..b9d5950 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -16,7 +16,7 @@ debian_10: - "cargo install usvg" - "pip3 install --user git+https://git.jaseg.de/pcb-tools-extension.git" - "pip3 install --user gerbolyze --no-binary gerbolyze" - - "gerbolyze --version" + - "gerbolyze --help" ubuntu_2004: stage: build @@ -26,7 +26,7 @@ ubuntu_2004: - "cargo install usvg" - "pip3 install --user git+https://git.jaseg.de/pcb-tools-extension.git" - "pip3 install --user gerbolyze --no-binary gerbolyze" - - "gerbolyze --version" + - "gerbolyze --help" fedora_33: stage: build @@ -36,7 +36,7 @@ fedora_33: - "cargo install usvg" - "pip3 install --user git+https://git.jaseg.de/pcb-tools-extension.git" - "pip3 install --user gerbolyze --no-binary gerbolyze" - - "gerbolyze --version" + - "gerbolyze --help" archlinux: stage: build @@ -49,7 +49,7 @@ archlinux: - "pip install --user git+https://git.jaseg.de/pcb-tools-extension.git" - "python setup.py install --user" - "export PATH=$HOME/.local/bin:$PATH" - - "gerbolyze --version" + - "gerbolyze --help" source: stage: build @@ -61,5 +61,5 @@ source: - "python3 -m venv" - "source venv/bin/activate" - "python3 setup.py install" - - "gerbolyze --version" + - "gerbolyze --help" -- cgit