File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -340,8 +340,7 @@ ARG JOBS=16
340
340
341
341
RUN mkdir -p /tmp/bazel-output && \
342
342
bazel --output_base=/tmp/bazel-output \
343
- --jobs=$JOBS ${CAPI_FLAGS} \
344
- build //src:ovms_shared && \
343
+ build --jobs=$JOBS ${CAPI_FLAGS} //src:ovms_shared && \
345
344
find /tmp/bazel-output -name libovms_shared.so && \
346
345
LIB_PATH=$(find /tmp/bazel-output -name libovms_shared.so | head -n1) && \
347
346
echo "Found built file: $LIB_PATH" && \
@@ -364,8 +363,7 @@ RUN bazel build --jobs=$JOBS ${CAPI_FLAGS} //src:capi_benchmark && \
364
363
365
364
RUN mkdir -p /tmp/bazel-output && \
366
365
bazel --output_base=/tmp/bazel-output \
367
- --jobs=$JOBS ${CAPI_FLAGS} \
368
- build //src:capi_benchmark && \
366
+ build --jobs=$JOBS ${CAPI_FLAGS} //src:capi_benchmark && \
369
367
CAPI_BIN=$(find /tmp/bazel-output -type f -name capi_benchmark | head -n1) && \
370
368
echo "Found built capi_benchmark: $CAPI_BIN" && \
371
369
chmod +x "$CAPI_BIN" && \
You can’t perform that action at this time.
0 commit comments