diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-08-20 17:43:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-20 15:43:50 +0000 |
commit | efdf0bbd9b76b8b1b5d0374a63358192534f22ad (patch) | |
tree | ee43595577e7d82f264df923dd50dcae2cb32c89 | |
parent | 32bbba3db29d503a681ad1617901ce9a0e908e86 (diff) |
ci: fix bench step (#20216)
-rwxr-xr-x | .github/workflows/ci.generate.ts | 3 | ||||
-rw-r--r-- | .github/workflows/ci.yml | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts index 4ac3495ba..728a9d768 100755 --- a/.github/workflows/ci.generate.ts +++ b/.github/workflows/ci.generate.ts @@ -422,7 +422,8 @@ const ci = { }, installRustStep, { - if: "matrix.job == 'lint' || matrix.job == 'test'", + if: + "matrix.job == 'lint' || matrix.job == 'test' || matrix.job == 'bench'", ...installDenoStep, }, ...installPythonSteps.map((s) => diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b498c8e1..bfbdb5c9c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -147,7 +147,7 @@ jobs: -czvf target/release/deno_src.tar.gz -C .. deno - uses: dsherret/rust-toolchain-file@v1 if: '!(github.event_name == ''pull_request'' && matrix.skip_pr)' - - if: '!(github.event_name == ''pull_request'' && matrix.skip_pr) && (matrix.job == ''lint'' || matrix.job == ''test'')' + - if: '!(github.event_name == ''pull_request'' && matrix.skip_pr) && (matrix.job == ''lint'' || matrix.job == ''test'' || matrix.job == ''bench'')' name: Install Deno uses: denoland/setup-deno@v1 with: |