Skip to content

Commit

Permalink
Update TEST_BINARIES filter to ignore everything but full paths
Browse files Browse the repository at this point in the history
  • Loading branch information
msimberg committed Mar 20, 2024
1 parent 9900e70 commit 7619183
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/docker/deploy.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ RUN pushd ${SOURCE}/miniapp && \

# Prune and bundle binaries
RUN mkdir ${BUILD}-tmp && cd ${BUILD} && \
export TEST_BINARIES=`PATH=${SOURCE}/ci:$PATH ctest --show-only=json-v1 | jq '.tests | map(.command | .[] | select(contains("check-threads") | not)) | .[]' | tr -d \"` && \
export TEST_BINARIES=`PATH=${SOURCE}/ci:$PATH ctest --show-only=json-v1 | jq --raw-output '.tests | map(.command | .[] | select(startswith("/"))) | .[]' | tr -d \"` && \
LIBASAN=$(find /usr/lib -name libclang_rt.asan-x86_64.so) && \
if [[ -n "${LIBASAN}" ]]; then export LD_LIBRARY_PATH=$(dirname ${LIBASAN}):${LD_LIBRARY_PATH}; fi && \
echo "Binary sizes:" && \
Expand Down

0 comments on commit 7619183

Please sign in to comment.