diff --git a/.github/workflows/check-proof-producer.yml b/.github/workflows/check-proof-producer.yml index 16f0ee7132..0946640777 100644 --- a/.github/workflows/check-proof-producer.yml +++ b/.github/workflows/check-proof-producer.yml @@ -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 @@ -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 @@ -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