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:
parent
43c8c1cc6e
commit
d01e4c43c8
2 changed files with 7 additions and 0 deletions
4
.github/workflows/ci.generate.ts
vendored
4
.github/workflows/ci.generate.ts
vendored
|
@ -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: [
|
||||||
|
|
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
|
@ -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' &&
|
||||||
|
|
Loading…
Reference in a new issue