From 99d0479d3ace26a612307cb5124a9f39e8de7f48 Mon Sep 17 00:00:00 2001 From: "Ricardo (XenGi) Band" Date: Sun, 7 Feb 2021 22:40:26 +0100 Subject: no need for su --- .gitlab-ci.yml | 16 ++++++++-------- 1 file 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" -- cgit