diff options
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" |