Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: add cargo bloat #1985

Merged
merged 19 commits into from
Apr 27, 2024
15 changes: 10 additions & 5 deletions .github/workflows/autofix-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ concurrency:

jobs:
autofix:
env:
CARGO_TERM_COLOR: always
SCCACHE_GHA_ENABLED: true
RUSTC_WRAPPER: sccache
CARGO_INCREMENTAL: 0
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -34,17 +39,17 @@ jobs:
toolchain: nightly
components: rustfmt, clippy

- name: Sccache cache
uses: mozilla-actions/[email protected]
with:
version: "v0.4.0"

- name: Install cargo-machete
uses: actions-rs/cargo@v1
with:
command: install
args: cargo-machete

- name: Sccache cache
uses: mozilla-actions/[email protected]
with:
version: "v0.4.0"

- name: Cargo registry cache
uses: actions/cache@v3
with:
Expand Down
57 changes: 57 additions & 0 deletions .github/workflows/bloat.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main

name: bloat

concurrency:
group: ${{ github.workflow_ref }}-${{ github.head_ref || github.ref_name }}

# If this is enabled it will cancel current running and start latest
cancel-in-progress: true

jobs:
cargo_bloat:
env:
CARGO_TERM_COLOR: always
SCCACHE_GHA_ENABLED: true
RUSTC_WRAPPER: sccache
CARGO_INCREMENTAL: 0

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
submodules: recursive

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable

- name: Sccache cache
uses: mozilla-actions/[email protected]
with:
version: "v0.4.0"

- name: Cargo registry cache
uses: actions/cache@v3
with:
key: cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.toml') }}-${{ github.sha }}
restore-keys: |
cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.toml') }}-
cargo-${{ runner.os }}-
path: |
~/.cargo/registry
~/.cargo/git

- run: bash ./ci/prepare_build_environment.sh

- name: Run cargo bloat
uses: wsxiaoys/cargo-bloat-action@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
include_packages: tabby
Loading