You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
606 B
27 lines
606 B
name: Check code size
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/*.yml'
|
|
- 'tools/**'
|
|
- 'py/**'
|
|
- 'extmod/**'
|
|
- 'lib/**'
|
|
- 'ports/bare-arm/**'
|
|
- 'ports/minimal/**'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 100
|
|
- name: Install packages
|
|
run: source tools/ci.sh && ci_code_size_setup
|
|
- name: Build
|
|
run: source tools/ci.sh && ci_code_size_build
|
|
- name: Compute code size difference
|
|
run: tools/metrics.py diff --error-threshold 0 ~/size0 ~/size1
|
|
|