Skip to content

Commit

Permalink
correct path to sh script
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyMlashkin committed Sep 13, 2024
1 parent 2cad7a9 commit e234736
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/check-proof-producer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,6 @@ jobs:
run: |
echo "artifact-dir=$(realpath ${{ github.workspace }}/../artifacts)" >> $GITHUB_OUTPUT
echo "artifact-dir=$(realpath ${{ github.workspace }}/../artifacts)"
mkdir -p $(realpath ${{ github.workspace }}/../artifacts)/proof-producer/
- name: Download circuits and assignments artifact
uses: dawidd6/action-download-artifact@v3
Expand All @@ -161,7 +160,7 @@ jobs:
ls -l -a
- name: List artifacts
working-directory: ${{ steps.strings.outputs.artifact-dir }}/proof-producer/
working-directory: ${{ steps.strings.outputs.artifact-dir }}
run: |
pwd
ls -l -a
Expand All @@ -176,7 +175,10 @@ jobs:
fi
targets_str=$(echo "${{ needs.prepare-targets.outputs.prover-targets }}" | awk '{$1=$1};1' | sed '/^$/d' | tr '\n' ' ' | sed 's/ $//')
echo "targets from input: ${targets_str}"
${{ github.workspace }}/tests/make_proof_for_pairs.sh --use-nix ${extra_args} ${targets_str}
ls -l -a ${{ github.workspace }}
ls -l -a ${{ github.workspace }}/proof-producer
${{ github.workspace }}/proof-producer/tests/
${{ github.workspace }}/proof-producer/tests/make_proof_for_pairs.sh --use-nix ${extra_args} ${targets_str}
- name: Download transpiler output artifact
id: download-to-artifact
Expand Down

0 comments on commit e234736

Please sign in to comment.