You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: remove all indexer-grpc components from build
- Remove indexer-grpc from docker-bake-rust-all.hcl all targets group
- Remove indexer-grpc target definition completely
- Skip all indexer binary builds in build-indexer.sh
- These components are not needed and were causing build failures
Copy file name to clipboardExpand all lines: docker/builder/build-indexer.sh
+3-13Lines changed: 3 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -10,21 +10,11 @@ echo "PROFILE: $PROFILE"
10
10
11
11
echo"CARGO_TARGET_DIR: $CARGO_TARGET_DIR"
12
12
13
-
# Build all the rust binaries
14
-
cargo build --locked --profile=$PROFILE \
15
-
-p aptos-indexer-grpc-cache-worker \
16
-
-p aptos-indexer-grpc-file-store \
17
-
-p aptos-indexer-grpc-data-service \
18
-
-p aptos-indexer-grpc-in-memory-cache-benchmark \
19
-
"$@"
13
+
# Build all the rust binaries - indexer-grpc components removed as not needed
14
+
echo"No indexer binaries to build - skipping cargo build"
20
15
21
16
# After building, copy the binaries we need to `dist` since the `target` directory is used as docker cache mount and only available during the RUN step
0 commit comments