From 88766b0a3aea9109b4374169d27c0be4707a4fee Mon Sep 17 00:00:00 2001 From: Maxim Vezenov Date: Fri, 13 Dec 2024 16:33:26 -0500 Subject: [PATCH] chore(ci): Active rollup circuits in compilation report (#6813) --- .github/workflows/reports.yml | 5 ++--- test_programs/compilation_report.sh | 2 ++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/reports.yml b/.github/workflows/reports.yml index 314a424327..0a03add833 100644 --- a/.github/workflows/reports.yml +++ b/.github/workflows/reports.yml @@ -277,9 +277,8 @@ jobs: - project: { repo: AztecProtocol/aztec-packages, path: noir-projects/noir-protocol-circuits/crates/private-kernel-inner } - project: { repo: AztecProtocol/aztec-packages, path: noir-projects/noir-protocol-circuits/crates/private-kernel-tail } - project: { repo: AztecProtocol/aztec-packages, path: noir-projects/noir-protocol-circuits/crates/private-kernel-reset } - # TODO: Bring these back once they no longer time out - # - project: { repo: AztecProtocol/aztec-packages, path: noir-projects/noir-protocol-circuits/crates/rollup-base-private } - # - project: { repo: AztecProtocol/aztec-packages, path: noir-projects/noir-protocol-circuits/crates/rollup-base-public } + - project: { repo: AztecProtocol/aztec-packages, path: noir-projects/noir-protocol-circuits/crates/rollup-base-private } + - project: { repo: AztecProtocol/aztec-packages, path: noir-projects/noir-protocol-circuits/crates/rollup-base-public } name: External repo compilation report - ${{ matrix.project.repo }}/${{ matrix.project.path }} steps: diff --git a/test_programs/compilation_report.sh b/test_programs/compilation_report.sh index 13e74f0d7d..d050e7c9c3 100755 --- a/test_programs/compilation_report.sh +++ b/test_programs/compilation_report.sh @@ -29,7 +29,9 @@ for dir in ${tests_to_profile[@]}; do cd $base_path/$dir + # The default package to run is the supplied list hardcoded at the top of the script PACKAGE_NAME=$dir + # Otherwise default to the current directory as the package we want to run if [ "$#" -ne 0 ]; then PACKAGE_NAME=$(basename $current_dir) fi