From 7b98181cbb5547060cd21a586c39c8a8b83f669e Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Mon, 19 Apr 2021 18:16:59 +0200 Subject: [PATCH] log binary sizes --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a122d2ed..d52e98db 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,6 +59,10 @@ jobs: - name: Build Release run: make build-release + - name: Binary Size + run: | + ls -l ./target/release/gitui + - name: Build MSI (windows) if: matrix.os == 'windows-latest' run: | @@ -93,6 +97,7 @@ jobs: run: | make build-linux-musl-release ./target/x86_64-unknown-linux-musl/release/gitui --version + ls -l ./target/x86_64-unknown-linux-musl/release/gitui - name: Test run: | make test-linux-musl