* Move to latest compiler and package versions We also add cargo audit to the desktop tests. * Install cargo audit differently in workflow * Removes leftover nightly references * Removes install check from deploy.py The toolchain should be correctly setup after setup.sh. * Removes rust component install from workflow Now that the nightly version is fixed, this should work ootb. * Moves cargo audit install to setup.sh * Updates cargo bloat workflow to default features
41 lines
1.5 KiB
YAML
41 lines
1.5 KiB
YAML
name: Binary size report
|
|
on: pull_request
|
|
|
|
jobs:
|
|
cargo_bloat:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Setup
|
|
- uses: actions/setup-python@v1
|
|
with:
|
|
python-version: "3.10"
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: install
|
|
args: cargo-bloat
|
|
|
|
# First run: PR
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
- name: Set up OpenSK
|
|
run: ./setup.sh
|
|
- name: Run bloat on the PR
|
|
run: RUSTFLAGS="-C link-arg=-icf=all -C force-frame-pointers=no -C link-arg=-Tnrf52840_layout.ld" cargo bloat --release --target=thumbv7em-none-eabi --features=config_command,with_ctap1 --crates >> .github/workflows/bloat_output_new.txt
|
|
|
|
# Second run: PR
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
ref: ${{ github.base_ref }}
|
|
path: OpenSK_base
|
|
- name: Set up OpenSK
|
|
working-directory: ./OpenSK_base
|
|
run: ./setup.sh
|
|
- name: Run bloat on base
|
|
working-directory: ./OpenSK_base
|
|
run: RUSTFLAGS="-C link-arg=-icf=all -C force-frame-pointers=no -C link-arg=-Tnrf52840_layout.ld" cargo bloat --release --target=thumbv7em-none-eabi --features=config_command,with_ctap1 --crates >> "$GITHUB_WORKSPACE/.github/workflows/bloat_output_old.txt"
|
|
|
|
- name: Run output formatter to echo workflow command
|
|
run: ./.github/workflows/bloat_formatter.sh bloat_output_new.txt bloat_output_old.txt bloat_comment.md
|