Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
nmattia committed Feb 21, 2025
1 parent 0d11924 commit 685c5ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows-source/ci-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ jobs:

- name: Foo bar
run: |
find -L bazel-out -name SHA256SUMS | xargs cat | sort | uniq > out_shafile_all
for shafile in $(find bazel-out/ -name SHA256SUMS); do if [ -f "$shafile" ]; then echo "$shafile"; fi ; done | xargs cat | sort | uniq
- name: Upload out_shafile
uses: actions/upload-artifact@v4
with:
Expand Down
2 changes: 2 additions & 0 deletions ci/bazel-scripts/main.sh
Original file line number Diff line number Diff line change
Expand Up @@ -117,3 +117,5 @@ rm "$url_out"
echo "the shasums:"

find -L bazel-out -name SHA256SUMS

for shafile in $(find bazel-out/ -name SHA256SUMS); do if [ -f "$shafile" ]; then echo "$shafile"; fi ; done | xargs cat | sort | uniq

0 comments on commit 685c5ca

Please sign in to comment.