aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_interop_tests.py
diff options
context:
space:
mode:
authorGravatar Stanley Cheung <stanleycheung@google.com>2015-10-15 14:32:44 -0700
committerGravatar Stanley Cheung <stanleycheung@google.com>2015-10-15 14:32:44 -0700
commit51c36d9e63af55caf66e1214f27309464418a635 (patch)
tree5ad9a3df09735eaa42e3fbf99a03df4071b95424 /tools/run_tests/run_interop_tests.py
parentb87663b31a2b3ba10ae797dcef279ce62b60f4a6 (diff)
add composer/auth.json env variable
Diffstat (limited to 'tools/run_tests/run_interop_tests.py')
-rwxr-xr-xtools/run_tests/run_interop_tests.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/run_tests/run_interop_tests.py b/tools/run_tests/run_interop_tests.py
index c9e2f09b2d..40e1b6e0cc 100755
--- a/tools/run_tests/run_interop_tests.py
+++ b/tools/run_tests/run_interop_tests.py
@@ -230,7 +230,10 @@ class PHPLanguage:
return _SSL_CERT_ENV
def global_env(self):
- return {}
+ # need to manually copy to each jenkins machine if we run into github
+ # rate limit when running `composer install`
+ return {"BUILD_INTEROP_DOCKER_EXTRA_ARGS":
+ "-v /var/local/.composer/auth.json:/root/.composer/auth.json:ro"}
def __str__(self):
return 'php'