From 3ed94099f2aad5698f1ce495341751c2ccf27cae Mon Sep 17 00:00:00 2001 From: Ev Haus Date: Fri, 15 Mar 2024 23:19:08 -0700 Subject: [PATCH] Remove hyperfine from the equation --- .github/workflows/benchmark.yaml | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/.github/workflows/benchmark.yaml b/.github/workflows/benchmark.yaml index 545e3b2..0e45837 100644 --- a/.github/workflows/benchmark.yaml +++ b/.github/workflows/benchmark.yaml @@ -17,20 +17,8 @@ jobs: node-version: '20' - name: Install - run: | - # Install dependencies - yarn install --immutable - - # Install hyperfine - wget https://github.com/sharkdp/hyperfine/releases/download/v1.18.0/hyperfine_1.18.0_amd64.deb - sudo dpkg -i hyperfine_1.18.0_amd64.deb + run: yarn install --immutable - - name: Install bun - uses: oven-sh/setup-bun@v1 - with: - # Cannot upgrade due to https://github.com/oven-sh/bun/issues/8314 - bun-version: 1.0.23 - - name: Run run: | - hyperfine --show-output --warmup 1 'yarn workspace vitest test --poolOptions.threads.isolate=false' \ No newline at end of file + yarn workspace vitest test --poolOptions.threads.isolate=false \ No newline at end of file