Skip to content

Commit

Permalink
Allow remote compiler execution mode for Postgres build
Browse files Browse the repository at this point in the history
Summary: Allow remote compiler execution mode for Postgres build

Test Plan: Jenkins

Reviewers: jenkins-bot

Differential Revision: https://phabricator.dev.yugabyte.com/D5260
  • Loading branch information
mbautin committed Aug 3, 2018
1 parent 05ac1ea commit 03079e3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/yb/build_postgres.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,8 @@ def set_env_vars(self, step):
logging.info("%s: %s", env_var_name, os.environ[env_var_name])
# PostgreSQL builds pretty fast, and we don't want to use our remote compilation over SSH
# for it as it might have issues with parallelism.
os.environ['YB_NO_REMOTE_BUILD'] = '1'
if step == 'configure':
os.environ['YB_NO_REMOTE_BUILD'] = '1'

os.environ['YB_BUILD_TYPE'] = self.build_type

Expand Down

0 comments on commit 03079e3

Please sign in to comment.