From 4b1120d57e8b78d5af3a54603066e17b815885a6 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 29 Jan 2021 17:50:13 +0000 Subject: [PATCH] ci: Drop testuser creation Nothing is using this; our unit tests don't change uids and most of our testing is in VMs. Dropping this makes it easier to run the scripts outside of CI. --- ci/build.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ci/build.sh b/ci/build.sh index db083e84..97b0f9f5 100755 --- a/ci/build.sh +++ b/ci/build.sh @@ -9,11 +9,6 @@ dn=$(dirname $0) ${dn}/install-extra-builddeps.sh ${dn}/installdeps.sh -# create an unprivileged user for testing -if ! getent passwd testuser; then - adduser testuser -fi - # make it clear what rustc version we're compiling with (this is grepped in CI) rustc --version