aboutsummaryrefslogtreecommitdiff
path: root/infra/ci
diff options
context:
space:
mode:
Diffstat (limited to 'infra/ci')
-rwxr-xr-xinfra/ci/build.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/infra/ci/build.py b/infra/ci/build.py
index a1a22836a..30ff4ea49 100755
--- a/infra/ci/build.py
+++ b/infra/ci/build.py
@@ -239,7 +239,8 @@ def main():
infra_changed = is_infra_changed()
if infra_changed:
print('Pulling and building base images first.')
- return build_base_images()
+ if build_base_images():
+ return 1
result = build_modified_projects()
if result == BuildModifiedProjectsResult.BUILD_FAIL: