Skip to content

Commit

Permalink
build: fix test stage in dockerfile (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
domire8 committed Sep 20, 2023
1 parent ab371ed commit 891e536
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ FROM build as test
ARG TARGETPLATFORM
ARG CACHEID
RUN --mount=type=cache,target=./build,id=cmake-${TARGETPLATFORM}-${CACHEID},uid=1000 \
cmake -B build -DBUILD_TESTING=ON && CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test
cmake -B build -DBUILD_TESTING=ON && cd build && make && CTEST_OUTPUT_ON_FAILURE=1 make test
COPY --from=install /tmp/communication-interfaces /usr/local
COPY --from=python /tmp/python-home/ /home
COPY --from=python /python/test /python/test
Expand Down

0 comments on commit 891e536

Please sign in to comment.