diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2023-08-19 16:22:21 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-19 16:22:21 +0530 |
commit | b9f407aef73dd5773638a4ce1690737209318be8 (patch) | |
tree | c02ae9b6be660c42f9107eb7995b6da6e73e61a9 | |
parent | c2259f78eb8180731bb562740695ab6e58c790e7 (diff) |
chore: fix bench ci (#20208)
-rwxr-xr-x | .github/workflows/ci.generate.ts | 2 | ||||
-rw-r--r-- | .github/workflows/ci.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts index 77e34b102..4ac3495ba 100755 --- a/.github/workflows/ci.generate.ts +++ b/.github/workflows/ci.generate.ts @@ -506,7 +506,7 @@ const ci = { "then", " node -v", // Install benchmark tools. - installBenchTools, + " " + installBenchTools, "fi", ].join("\n"), }, diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f97816325..0b498c8e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -300,7 +300,7 @@ jobs: if [ "${{ matrix.job }}" == "bench" ] then node -v - ./tools/install_prebuilt.js wrk hyperfine + ./tools/install_prebuilt.js wrk hyperfine fi if: '!(github.event_name == ''pull_request'' && matrix.skip_pr)' - name: Cache Cargo home |