Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inherit env vars in sudo uses. #807

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion appengine/runtime_builders/template_builder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ fi
source "$KOKORO_GFILE_DIR/common.sh"

cd github
yes | sudo pip3 install ruamel.yaml
yes | sudo -E pip3 install ruamel.yaml
python3 runtimes-common/appengine/runtime_builders/template_builder.py -f "${KOKORO_GFILE_DIR}/${CONFIG_FILE}"
2 changes: 1 addition & 1 deletion hack/kokoro-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fi

pushd github/runtimes-common
# Install deps.
sudo pip install --upgrade -r requirements.txt
sudo -E pip install --upgrade -r requirements.txt

echo "Running unit tests..."
# Run the tests.
Expand Down