From d01e4c43c814f42fc1c16037bc050bf697dcf60e Mon Sep 17 00:00:00 2001 From: Nathan Whitaker <17734409+nathanwhit@users.noreply.github.com> Date: Tue, 16 Apr 2024 14:13:48 -0700 Subject: [PATCH] fix(ci): Fix bench job (#23410) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Forgot to add the step to clone the new submodule added in #23395 😅. --- .github/workflows/ci.generate.ts | 4 ++++ .github/workflows/ci.yml | 3 +++ 2 files changed, 7 insertions(+) diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts index 127b8c9afc..755e3a1358 100755 --- a/.github/workflows/ci.generate.ts +++ b/.github/workflows/ci.generate.ts @@ -457,6 +457,10 @@ const ci = { ...submoduleStep("./tests/node_compat/runner/suite"), if: "matrix.job == 'lint' && matrix.os == 'linux'", }, + { + ...submoduleStep("./cli/bench/testdata/lsp_benchdata"), + if: "matrix.job == 'bench'", + }, { name: "Create source tarballs (release, linux)", if: [ diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b74deb62e2..25603027fd 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' &&