diff options
| author | Julian Andres Klode <julian.klode@canonical.com> | 2023-08-02 15:28:02 +0200 |
|---|---|---|
| committer | Julian Andres Klode <julian.klode@canonical.com> | 2023-08-02 16:12:31 +0200 |
| commit | aa56836331870d975c212a5df2f13db9ce3914bf (patch) | |
| tree | 79dbe7e0641d9373deb28ff8945462f2406d6664 | |
| parent | 3f33c9171aea5d1930d9f87e3337dd716f8db866 (diff) | |
CI: Do not require UID 1000 for our test user
It seems the ubuntu:lunar image has a user with UID 1000 already
which was not the case in previous versions.
| -rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 171c44555..72e15f8cd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,7 +12,7 @@ before_script: - rm -f /etc/dpkg/dpkg.cfg.d/excludes - apt-get update - apt-get install --no-install-recommends -qq build-essential expect sudo ccache moreutils adduser - - adduser --home /home/travis travis --quiet --disabled-login --gecos "" --uid 1000 + - adduser --home /home/travis travis --quiet --disabled-login --gecos "" - chmod 755 /root - chmod -R o+rwX $PWD - ./prepare-release travis-ci |
