aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Stanley Cheung <stanleycheung@google.com>2016-02-09 22:11:26 -0800
committerGravatar Stanley Cheung <stanleycheung@google.com>2016-02-09 22:11:26 -0800
commit31cb8668217f62774a1d80efc3ec59bf9f95db49 (patch)
treef6eed45251ff07d69a08ff758380feb60913db89
parentbfe240ea07d09786e26c0e7f75a7dbabcb977c7f (diff)
the host file path to the auth.json file has changed
-rwxr-xr-xtools/run_tests/run_interop_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/run_tests/run_interop_tests.py b/tools/run_tests/run_interop_tests.py
index 4a670e0c9d..b8a6637e0c 100755
--- a/tools/run_tests/run_interop_tests.py
+++ b/tools/run_tests/run_interop_tests.py
@@ -536,9 +536,9 @@ def build_interop_image_jobspec(language, tag=None):
# This env variable is used to get around the github rate limit
# error when running the PHP `composer install` command
# TODO(stanleycheung): find a more elegant way to do this
- if language.safename == 'php' and os.path.exists('/var/local/.composer/auth.json'):
+ if language.safename == 'php' and os.path.exists('/home/jenkins/.composer/auth.json'):
env['BUILD_INTEROP_DOCKER_EXTRA_ARGS'] = \
- '-v /var/local/.composer/auth.json:/root/.composer/auth.json:ro'
+ '-v /home/jenkins/.composer/auth.json:/root/.composer/auth.json:ro'
build_job = jobset.JobSpec(
cmdline=['tools/jenkins/build_interop_image.sh'],
environ=env,