diff options
author | Ricardo (XenGi) Band <email@ricardo.band> | 2021-02-07 22:40:26 +0100 |
---|---|---|
committer | Ricardo (XenGi) Band <email@ricardo.band> | 2021-02-07 22:40:26 +0100 |
commit | 99d0479d3ace26a612307cb5124a9f39e8de7f48 (patch) | |
tree | cde8d223eb21abcd4eea65c14e5a088226758a79 /.gitlab-ci.yml | |
parent | f560923a9c82157957ebd2ab9630c438ba9aa8f4 (diff) | |
download | gerbolyze-99d0479d3ace26a612307cb5124a9f39e8de7f48.tar.gz gerbolyze-99d0479d3ace26a612307cb5124a9f39e8de7f48.tar.bz2 gerbolyze-99d0479d3ace26a612307cb5124a9f39e8de7f48.zip |
no need for su
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f71f51f..2ec2c6d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,27 +8,27 @@ debian_10: stage: build image: "registry.gitlab.com/gerbolyze/build-containers/debian:10" script: - - "su - bernd -c 'python3 setup.py install --user'" - - "su - bernd -c 'gerbolyze --help'" + - "python3 setup.py install --user" + - "gerbolyze --help" ubuntu_2004: stage: build image: "registry.gitlab.com/gerbolyze/build-containers/ubuntu:20.04" script: - - "su - bernd -c 'python3 setup.py install --user'" - - "su - bernd -c 'gerbolyze --help'" + - "python3 setup.py install --user" + - "gerbolyze --help" fedora_33: stage: build image: "registry.gitlab.com/gerbolyze/build-containers/fedora:33" script: - - "su - bernd -c 'python3 setup.py install --user'" - - "su - bernd -c 'gerbolyze --help'" + - "python3 setup.py install --user" + - "gerbolyze --help" archlinux: stage: build image: "registry.gitlab.com/gerbolyze/build-containers/archlinux:latest" script: - - "su - bernd -c 'python setup.py install --user'" - - "su - bernd -c 'gerbolyze --help'" + - "python setup.py install --user" + - "gerbolyze --help" |