diff options
author | Ricardo (XenGi) Band <email@ricardo.band> | 2021-02-07 19:28:21 +0100 |
---|---|---|
committer | Ricardo (XenGi) Band <email@ricardo.band> | 2021-02-07 19:28:21 +0100 |
commit | 729ec14b66a73d024e65b6070da6703feb6a25e4 (patch) | |
tree | 2ff65f7680b68649baf21c5ad59e732f2e3b060a /.gitlab-ci.yml | |
parent | d3a83bd0cc96e27f8c99df9ff5363e0e19db320c (diff) | |
download | gerbolyze-729ec14b66a73d024e65b6070da6703feb6a25e4.tar.gz gerbolyze-729ec14b66a73d024e65b6070da6703feb6a25e4.tar.bz2 gerbolyze-729ec14b66a73d024e65b6070da6703feb6a25e4.zip |
use help message instead of version
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 10 |
1 files 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" |