Skip to content

Commit

Permalink
switch how we output from jq
Browse files Browse the repository at this point in the history
  • Loading branch information
vezenovm committed Jan 13, 2025
1 parent 1fa8d12 commit 5169c7b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,11 +120,12 @@ jobs:
mkdir ../reports
mv gates_report_brillig.json ../reports/gates_report_brillig_inliner_max.json
./gates_report_brillig.sh 0
jq -i '.programs |= map(.package_name |= (. + "_inliner_zero"))' gates_report_brillig.json
jq '.programs |= map(.package_name |= (. + "_inliner_zero"))' gates_report_brillig.json > gates_report_brillig.json
cat gates_report_brillig.json
mv gates_report_brillig.json ../reports/gates_report_brillig_inliner_zero.json
./gates_report_brillig.sh -9223372036854775808
jq -i '.programs |= map(.package_name |= (. + "_inliner_min"))' gates_report_brillig.json
jq '.programs |= map(.package_name |= (. + "_inliner_min"))' gates_report_brillig.json > gates_report_brillig.json
cat gates_report_brillig.json
mv gates_report_brillig.json ../reports/gates_report_brillig_inliner_min.json
- name: Merge compilation reports using jq
Expand Down

0 comments on commit 5169c7b

Please sign in to comment.