Tools: build_ci: disable .profile check on github actions

This commit is contained in:
Pierre Kancir 2024-11-22 11:11:04 +01:00 committed by Peter Barker
parent 95a273e18a
commit a4b27c6c37

View File

@ -5,7 +5,9 @@
XOLDPWD=$PWD # profile changes directory :-(
. ~/.profile
if [ -z "$GITHUB_ACTIONS" ] || [ "$GITHUB_ACTIONS" != "true" ]; then
. ~/.profile
fi
if [ "$CI" = "true" ]; then
export PIP_ROOT_USER_ACTION=ignore