1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00

fix(ci): Fix bench job (#23410)

Forgot to add the step to clone the new submodule added in #23395 😅.
This commit is contained in:
Nathan Whitaker 2024-04-16 14:13:48 -07:00 committed by GitHub
parent 43c8c1cc6e
commit d01e4c43c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 0 deletions

View file

@ -457,6 +457,10 @@ const ci = {
...submoduleStep("./tests/node_compat/runner/suite"), ...submoduleStep("./tests/node_compat/runner/suite"),
if: "matrix.job == 'lint' && matrix.os == 'linux'", if: "matrix.job == 'lint' && matrix.os == 'linux'",
}, },
{
...submoduleStep("./cli/bench/testdata/lsp_benchdata"),
if: "matrix.job == 'bench'",
},
{ {
name: "Create source tarballs (release, linux)", name: "Create source tarballs (release, linux)",
if: [ if: [

View file

@ -160,6 +160,9 @@ jobs:
- name: Clone submodule ./tests/node_compat/runner/suite - name: Clone submodule ./tests/node_compat/runner/suite
run: git submodule update --init --recursive --depth=1 -- ./tests/node_compat/runner/suite run: git submodule update --init --recursive --depth=1 -- ./tests/node_compat/runner/suite
if: '!(matrix.skip) && (matrix.job == ''lint'' && matrix.os == ''linux'')' if: '!(matrix.skip) && (matrix.job == ''lint'' && matrix.os == ''linux'')'
- name: Clone submodule ./cli/bench/testdata/lsp_benchdata
run: git submodule update --init --recursive --depth=1 -- ./cli/bench/testdata/lsp_benchdata
if: '!(matrix.skip) && (matrix.job == ''bench'')'
- name: 'Create source tarballs (release, linux)' - name: 'Create source tarballs (release, linux)'
if: |- if: |-
!(matrix.skip) && (matrix.os == 'linux' && !(matrix.skip) && (matrix.os == 'linux' &&