From 140c6f2376e58aa0da985bdc419966e0690447ce Mon Sep 17 00:00:00 2001 From: Tom French <15848336+TomAFrench@users.noreply.github.com> Date: Mon, 16 Dec 2024 17:04:47 +0000 Subject: [PATCH] Update .github/workflows/reports.yml --- .github/workflows/reports.yml | 46 ----------------------------------- 1 file changed, 46 deletions(-) diff --git a/.github/workflows/reports.yml b/.github/workflows/reports.yml index 1e355dc9e6b..0a03add8338 100644 --- a/.github/workflows/reports.yml +++ b/.github/workflows/reports.yml @@ -490,49 +490,3 @@ jobs: with: header: memory message: ${{ steps.memory_report.outputs.markdown }} - - generate_compilation_report: - name: Compilation time - needs: [build-nargo] - runs-on: ubuntu-22.04 - permissions: - pull-requests: write - - steps: - - uses: actions/checkout@v4 - - - name: Download nargo binary - uses: actions/download-artifact@v4 - with: - name: nargo - path: ./nargo - - - name: Set nargo on PATH - run: | - nargo_binary="${{ github.workspace }}/nargo/nargo" - chmod +x $nargo_binary - echo "$(dirname $nargo_binary)" >> $GITHUB_PATH - export PATH="$PATH:$(dirname $nargo_binary)" - nargo -V - - - name: Generate Compilation report - working-directory: ./test_programs - run: | - ./compilation_report.sh - mv compilation_report.json ../compilation_report.json - - - name: Parse compilation report - id: compilation_report - uses: noir-lang/noir-bench-report@0d7464a8c39170523932d7846b6e6b458a294aea - with: - report: compilation_report.json - header: | - # Compilation Report - memory_report: false - - - name: Add memory report to sticky comment - if: github.event_name == 'pull_request' || github.event_name == 'pull_request_target' - uses: marocchino/sticky-pull-request-comment@v2 - with: - header: compilation - message: ${{ steps.compilation_report.outputs.markdown }}