Skip to content

Commit

Permalink
More pydeps.yml debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
rasa authored Feb 18, 2024
1 parent 84693bd commit 069212c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/pydeps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,14 @@ jobs:
- name: RUN find duplicate packages, if any, across all requirements files
if: success()
run: |
set -v -x
serialized="${serialized:-}"
printf 'len(serialized)=%d\n' "${#serialized}"
eval "$(base64 -d <<<"${serialized}")"
deserialized=$(base64 -d <<<"${serialized}")
printf 'len(deserialized)=%d\n' "${#deserialized}"
eval "${deserialized}"
mask="${{ inputs.mask || env.DEFAULT_MASK }}"
printf 'Found %d files matching %s:\n' "${#MAPFILE[@]}" "${mask}"
tmp1=$(mktemp)
cat "${MAPFILE[@]}" \
| grep -o '^[^#]*' \
Expand Down

0 comments on commit 069212c

Please sign in to comment.