Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
benchmark-projects-list:
name: Load benchmark projects list
runs-on: ubuntu-22.04
timeout-minutes: 5
outputs:
projects: ${{ steps.get_bench_projects.outputs.projects }}

Expand All @@ -26,6 +27,7 @@ jobs:

build-nargo:
runs-on: ubuntu-22.04
timeout-minutes: 15

steps:
- name: Checkout Noir repo
Expand Down Expand Up @@ -61,6 +63,7 @@ jobs:
name: Circuit sizes
needs: [build-nargo]
runs-on: ubuntu-24.04
timeout-minutes: 20
permissions:
pull-requests: write

Expand Down Expand Up @@ -101,6 +104,7 @@ jobs:
name: Brillig bytecode sizes
needs: [build-nargo]
runs-on: ubuntu-22.04
timeout-minutes: 20
permissions:
pull-requests: write

Expand Down Expand Up @@ -150,6 +154,7 @@ jobs:
name: Brillig execution trace sizes
needs: [build-nargo]
runs-on: ubuntu-22.04
timeout-minutes: 20
permissions:
pull-requests: write

Expand Down Expand Up @@ -199,6 +204,7 @@ jobs:
name: Peak memory usage
needs: [build-nargo]
runs-on: ubuntu-22.04
timeout-minutes: 20
permissions:
pull-requests: write

Expand Down Expand Up @@ -240,6 +246,7 @@ jobs:
name: Compilation and execution time
needs: [build-nargo]
runs-on: ubuntu-22.04
timeout-minutes: 20
permissions:
pull-requests: write

Expand Down Expand Up @@ -507,6 +514,7 @@ jobs:
upload_compilation_report:
name: Upload compilation report
needs: [generate_compilation_and_execution_report, external_repo_compilation_and_execution_report]
timeout-minutes: 5
# We want this job to run even if one variation of the matrix in `external_repo_compilation_and_execution_report` fails
if: always()
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -558,6 +566,7 @@ jobs:
upload_compilation_memory_report:
name: Upload compilation memory report
needs: [generate_memory_report, external_repo_memory_report]
timeout-minutes: 5
# We want this job to run even if one variation of the matrix in `external_repo_memory_report` fails
if: always()
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -608,6 +617,7 @@ jobs:
upload_execution_memory_report:
name: Upload execution memory report
needs: [generate_memory_report, external_repo_memory_report]
timeout-minutes: 5
# We want this job to run even if one variation of the matrix in `external_repo_memory_report` fails
if: always()
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -655,10 +665,10 @@ jobs:
alert-comment-cc-users: "@TomAFrench"
max-items-in-chart: 50


upload_execution_report:
name: Upload execution report
needs: [generate_compilation_and_execution_report, external_repo_compilation_and_execution_report]
timeout-minutes: 5
# We want this job to run even if one variation of the matrix in `external_repo_compilation_and_execution_report` fails
if: always()
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -711,6 +721,7 @@ jobs:
reports-end:
name: End
runs-on: ubuntu-22.04
timeout-minutes: 5
# We want this job to always run (even if the dependant jobs fail) as we want this job to fail rather than skipping.
if: ${{ always() }}
needs:
Expand Down
Loading