diff options
author | Ricardo (XenGi) Band <email@ricardo.band> | 2021-02-07 23:56:55 +0100 |
---|---|---|
committer | Ricardo (XenGi) Band <email@ricardo.band> | 2021-02-07 23:57:24 +0100 |
commit | 29408cb2b0ea015942549a54766978a3cb724fcd (patch) | |
tree | f9172601d230a7d3a11537a7415bc8815c2577e7 | |
parent | 99d0479d3ace26a612307cb5124a9f39e8de7f48 (diff) | |
download | gerbolyze-29408cb2b0ea015942549a54766978a3cb724fcd.tar.gz gerbolyze-29408cb2b0ea015942549a54766978a3cb724fcd.tar.bz2 gerbolyze-29408cb2b0ea015942549a54766978a3cb724fcd.zip |
fix $PATH
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2ec2c6d..798e666 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,6 +8,7 @@ debian_10: stage: build image: "registry.gitlab.com/gerbolyze/build-containers/debian:10" script: + - "export PATH=$HOME/.local/bin:$HOME/.cargo/bin:$PATH" - "python3 setup.py install --user" - "gerbolyze --help" @@ -15,6 +16,7 @@ ubuntu_2004: stage: build image: "registry.gitlab.com/gerbolyze/build-containers/ubuntu:20.04" script: + - "export PATH=$HOME/.local/bin:$HOME/.cargo/bin:$PATH" - "python3 setup.py install --user" - "gerbolyze --help" @@ -22,6 +24,7 @@ fedora_33: stage: build image: "registry.gitlab.com/gerbolyze/build-containers/fedora:33" script: + - "export PATH=$HOME/.local/bin:$HOME/.cargo/bin:$PATH" - "python3 setup.py install --user" - "gerbolyze --help" @@ -29,6 +32,7 @@ archlinux: stage: build image: "registry.gitlab.com/gerbolyze/build-containers/archlinux:latest" script: + - "export PATH=$HOME/.local/bin:$HOME/.cargo/bin:$PATH" - "python setup.py install --user" - "gerbolyze --help" |