Skip to content

Commit

Permalink
renaming one more time
Browse files Browse the repository at this point in the history
  • Loading branch information
vezenovm committed Dec 17, 2024
1 parent 1f96772 commit 4fdfcf4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,9 @@ jobs:
if [[ "$PACKAGE_NAME" == "$NAME_FROM_MATRIX" ]]; then
echo "got here"
mkdir ./test-repo/${{ matrix.project.path }}/target
mv $artifact ./test-repo/${{ matrix.project.path }}/target/$PACKAGE_NAME.json
cd ./artifacts
cp ./artifacts/$ARTIFACT_NAME ./$ARTIFACT_NAME.json
mv $ARTIFACT_NAME.json ./test-repo/${{ matrix.project.path }}/target/$PACKAGE_NAME.json
break
fi
ls ./test-repo/${{ matrix.project.path }}
Expand All @@ -670,7 +672,7 @@ jobs:
- name: Generate execution report
working-directory: ./test-repo/${{ matrix.project.path }}
run: |
ls .
ls ./target/
mv /home/runner/work/noir/noir/scripts/test_programs/execution_report.sh ./execution_report.sh
chmod +x ./execution_report.sh
./execution_report.sh 1
Expand Down
2 changes: 1 addition & 1 deletion test_programs/execution_report.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ for dir in ${tests_to_profile[@]}; do
# Check whether a compilation artifact exists.
# Any programs part of this benchmark should already be compiled.
# We want to make sure that compilation time is not included in the execution time.
if [ ! -f ./target/*.json ]; then
if [[ ! -e ./target/*.json ]]; then
echo "Missing compilation artifact for $PACKAGE_NAME"
exit 1
fi
Expand Down

0 comments on commit 4fdfcf4

Please sign in to comment.