Skip to content

Commit 38be415

Browse files
committed
feat(build): Re-enable indexer image build
Re-enables the indexer image in the build process by: - Uncommenting its definition in the BASE_IMAGES list. - Adding its dependency to the IMAGE_DEPENDENCIES hierarchy in the Google Cloud Build configuration.
1 parent 4454b1c commit 38be415

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

infra/build/functions/base_images.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def get_base_image_path(image_name):
6565
ImageConfig('base-clang-full',
6666
path=get_base_image_path('base-clang'),
6767
build_args=('FULL_LLVM_BUILD=1',)),
68-
# ImageConfig('indexer', path=os.path.join('infra', 'indexer')),
68+
ImageConfig('indexer', path=os.path.join('infra', 'indexer')),
6969
ImageConfig('base-builder'),
7070
ImageConfig('base-builder-go'),
7171
ImageConfig('base-builder-javascript'),

infra/build/functions/build_and_push_test_images.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,7 @@ def gcb_build_and_push_images(test_image_tag: str, version_tag: str = None):
209209
'base-builder-rust': ['base-builder'],
210210
'base-builder-swift': ['base-builder'],
211211
'base-runner-debug': ['base-runner'],
212+
'indexer': ['base-clang-full'],
212213
}
213214

214215
steps = []

0 commit comments

Comments
 (0)