Skip to content
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 kokoro/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ retry pipenv install > /dev/null

# Fetch agent.
mkdir /tmp/agent
retry gsutil cp gs://{{.GCSLocation}}/* /tmp/agent
retry gcloud storage cp gs://{{.GCSLocation}}/* /tmp/agent

# Install agent.
retry pipenv run {{.PythonCommand}} -m pip install --ignore-installed "$(find /tmp/agent -name "google_cloud_profiler*")"
Expand Down
2 changes: 1 addition & 1 deletion kokoro/integration_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ python3 setup.py sdist
AGENT_PATH=$(find "$PWD/dist" -name "google_cloud_profiler*")
GCS_LOCATION="cprof-e2e-artifacts/python/kokoro/${KOKORO_JOB_TYPE}/${KOKORO_BUILD_NUMBER}"
retry gcloud auth activate-service-account --key-file="${GOOGLE_APPLICATION_CREDENTIALS}"
retry gsutil cp "${AGENT_PATH}" "gs://${GCS_LOCATION}/"
retry gcloud storage cp "${AGENT_PATH}" "gs://${GCS_LOCATION}/"

# Run test.
cd "kokoro"
Expand Down