Skip to content
Snippets Groups Projects
Commit 31cb8668 authored by Stanley Cheung's avatar Stanley Cheung
Browse files

the host file path to the auth.json file has changed

parent bfe240ea
No related branches found
No related tags found
No related merge requests found
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment