A few comments scraped from config.yml's CentOS job

This commit is contained in:
Jean-Paul Calderone 2019-04-04 13:59:28 -04:00
parent 4f4ff3ff3c
commit 273e4ca226

View File

@ -18,7 +18,12 @@ shift
PROJECT_ROOT="$1"
shift
# Avoid the /nonexistent home directory in nobody's /etc/passwd entry.
usermod --home /tmp/nobody nobody
# Grant read access to nobody, the user which will eventually try to test this
# checkout.
chown --recursive nobody:nogroup "${PROJECT_ROOT}"
sudo --set-home -u nobody "${PROJECT_ROOT}"/.circleci/create-virtualenv.sh "${WHEELHOUSE_PATH}" "${BOOTSTRAP_VENV}"
sudo --set-home -u nobody "${PROJECT_ROOT}"/.circleci/populate-wheelhouse.sh "${WHEELHOUSE_PATH}" "${BOOTSTRAP_VENV}" "${PROJECT_ROOT}"