Skip to content

Commit

Permalink
Don't checkout current repo in recursive checkout action, fix zkLLVM …
Browse files Browse the repository at this point in the history
…related run getter
  • Loading branch information
x-mass authored and akokoshn committed Jan 29, 2024
1 parent eb95c6c commit 62fd81d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,13 @@ jobs:
zkllvm_ref="master"
zkllvm_repo="NilFoundation/zkLLVM"
echo "$prs_refs" | while read line; do
echo $line
while read -r line; do
echo "$line"
if [[ $line == "${zkllvm_repo}:"* ]]; then
zkllvm_ref=$(echo $line | cut -d ' ' -f 2)
zkllvm_ref=$(echo "$line" | cut -d ' ' -f 2)
break
fi
done
done <<< "$prs_refs"
if [[ $zkllvm_ref == refs/pull/* ]]; then
echo "Considering reference ${zkllvm_ref} a pr ref"
Expand Down Expand Up @@ -189,6 +189,7 @@ jobs:
with:
paths: |
/__w/proof-producer/proof-producer/**
!/__w/proof-producer/proof-producer/
!/__w/proof-producer/proof-producer/**/.git/**
refs: ${{ needs.handle-syncwith.outputs.prs-refs }}

Expand Down

0 comments on commit 62fd81d

Please sign in to comment.