summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Whitaker <17734409+nathanwhit@users.noreply.github.com>2024-04-16 14:13:48 -0700
committerGitHub <noreply@github.com>2024-04-16 21:13:48 +0000
commitd01e4c43c814f42fc1c16037bc050bf697dcf60e (patch)
treed974b8c54cb3e6f2a4947be61e85f030cab1f8bf
parent43c8c1cc6e0f0fe4accde97c52f7f2bb998ac669 (diff)
fix(ci): Fix bench job (#23410)
Forgot to add the step to clone the new submodule added in #23395 😅.
-rwxr-xr-x.github/workflows/ci.generate.ts4
-rw-r--r--.github/workflows/ci.yml3
2 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts
index 127b8c9af..755e3a135 100755
--- a/.github/workflows/ci.generate.ts
+++ b/.github/workflows/ci.generate.ts
@@ -458,6 +458,10 @@ const ci = {
if: "matrix.job == 'lint' && matrix.os == 'linux'",
},
{
+ ...submoduleStep("./cli/bench/testdata/lsp_benchdata"),
+ if: "matrix.job == 'bench'",
+ },
+ {
name: "Create source tarballs (release, linux)",
if: [
"matrix.os == 'linux' &&",
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index b74deb62e..25603027f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -160,6 +160,9 @@ jobs:
- name: Clone submodule ./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'')'
+ - 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)'
if: |-
!(matrix.skip) && (matrix.os == 'linux' &&