Skip to content

Commit

Permalink
Fix TEST_BINARIES variable in codecov CI configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
msimberg committed Apr 9, 2024
1 parent 5b3c11e commit f7d52d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/docker/codecov.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN spack repo rm --scope site dlaf && \

# 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 \"` && \
echo "Binary sizes:" && \
ls -lh ${TEST_BINARIES} && \
ls -lh src/lib* && \
Expand Down

0 comments on commit f7d52d6

Please sign in to comment.