From 4b800f98b610c40f80ba77ad850aedc4cf0a9865 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Donny/=EA=B0=95=EB=8F=99=EC=9C=A4?= Date: Mon, 27 Mar 2023 13:44:26 +0900 Subject: [PATCH] Remove binary size action --- .github/workflows/bench.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index e058fb2072b5..563788700d35 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -11,35 +11,6 @@ env: RUST_LOG: "off" jobs: - binary-size: - name: Binary size - if: >- - ${{ !contains(github.event.head_commit.message, 'chore: ') && github.repository_owner == 'swc-project' }} - runs-on: macos-latest - steps: - - uses: actions/checkout@v3 - - name: Cache - uses: actions/cache@v1 - with: - path: | - ./cache - ~/.cargo/ - target - key: cargo-release-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }} - restore-keys: | - cargo-release-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }} - - - name: Install wasm-pack - run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh - - - name: Build (release) - run: | - yarn - yarn build - - - name: Print binary size - run: ls -al ./bindings/target/release/libbinding* - benchmark: name: Performance regression check if: >-