Skip to content

Memory report ci

Memory report ci #23

Workflow file for this run

name: Memory usage report
on:
pull_request:
permissions:
contents: write
pull-requests: write
jobs:
ci:
name: Report memory usage
runs-on: ubuntu-latest
steps:
# To get the potential changes to CI
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Generate memory usage report (current branch)
uses: ./.github/actions/memory-report
with:
branch: ${{ github.head_ref }}
# TODO: Comment back in
#- name: Generate memory usage report (main)
# uses: ./.github/actions/memory-report
# with:
# branch: ${{ github.base_ref }}
# To get back to the PR branch
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Compare
run:
python3 parse-reports.py artifacts/baseline-report.txt artifacts/update-report.txt artifacts/report.txt
- name: Comment
uses: gavv/pull-request-artifacts@v2.1.0
with:
commit: ${{ github.event.pull_request.head.sha }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
artifacts: report.txt
comment-title: "Memory usage report"
comment-message: "Here is an overview of how your pull request impacts the memory usage compared to the main branch:"
# - name: Checkout main
# uses: actions/checkout@v3
# with:
# submodules: recursive
# ref: main
# - name: Baseline report
# run: |
# make test
# mkdir artifacts
# # TODO: main does not generate the .size files yet:
# #cat build/test/*.size > artifacts/baseline-report.txt
# - name: Checkout update
# uses: actions/checkout@v3
# with:
# submodules: recursive
# - name: Update report
# run: |
# make test
# cat build/test/*.size > artifacts/update-report.txt
# cp artifacts/update-report.txt artifacts/baseline-report.txt
# # TODO: remove cp
# - name: Combine
# run:
# python3 parse-reports.py artifacts/baseline-report.txt artifacts/update-report.txt artifacts/report.txt