Skip to content

Commit

Permalink
Split the CI code size measurement job into two jobs: one with read-only
Browse files Browse the repository at this point in the history
permission to build (and potentially run) untrusted code, and another with
PR-write permission that only reports the sizes from the first job.
  • Loading branch information
detly committed Jul 18, 2023
1 parent 971e8d8 commit 3ff4632
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions .github/workflows/check-binary-size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,15 @@ on:
branches:
- master

# Responsibility is divided between two jobs "measure" and "report", so that the
# job that builds (and potentnially runs) untrusted code does not have PR write
# permission, and vice-versa.
jobs:
test:
measure:
name: Check binary size
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: read
env:
# This cannot be used as a context variable in the 'uses' key later. If it
# changes, update those steps too.
Expand All @@ -23,6 +26,9 @@ jobs:
TEST_MAIN_RS: foo.rs
BASE_COMMIT: ${{ github.event.pull_request.base.sha }}
HEAD_COMMIT: ${{ github.event.pull_request.head.sha }}
outputs:
binary-size-reference: ${{ steps.size-reference.outputs.test-binary-size }}
binary-size-updated: ${{ steps.size-updated.outputs.test-binary-size }}
steps:
- name: Print info
run: |
Expand Down Expand Up @@ -77,11 +83,18 @@ jobs:
main-rs: ${{ env.TEST_MAIN_RS }}
rustc-dir: ${{ env.RUSTC_DIR }}
id: size-updated
report:
name: Report binary size changes
runs-on: ubuntu-latest
needs: measure
permissions:
pull-requests: write
steps:
- name: Post a PR comment if the size has changed
uses: actions/github-script@v6
env:
SIZE_REFERENCE: ${{ steps.size-reference.outputs.test-binary-size }}
SIZE_UPDATED: ${{ steps.size-updated.outputs.test-binary-size }}
SIZE_REFERENCE: ${{ needs.measure.outputs.binary-size-reference }}
SIZE_UPDATED: ${{ needs.measure.outputs.binary-size-updated }}
with:
script: |
const reference = process.env.SIZE_REFERENCE;
Expand Down

0 comments on commit 3ff4632

Please sign in to comment.