From 88f5288a3af616ffcdd202b93a2d2f0568d0a5a6 Mon Sep 17 00:00:00 2001 From: Jingbo Xu Date: Thu, 15 Aug 2024 15:21:36 +0800 Subject: [PATCH] Update codeql.yml --- .github/workflows/codeql.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index da52125410bd..6af80b90f5ea 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -84,11 +84,9 @@ jobs: # ℹī¸ Command-line programs to run using the OS shell. # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun - if: matrix.build-mode == 'manual' + name: Cpp Manual Build and Analysis shell: bash run: | - echo 'If you are using a "manual" build mode for one or more of the' \ - 'languages you are analyzing, replace this with the commands to build' \ - 'your code, for example:' echo 'Install dependencies' pip install gsctl gsctl install-deps dev @@ -97,7 +95,8 @@ jobs: cd analytical_engine mkdir build cd build - cmake -DBUILD_TESTS=OFF .. + cmake -DBUILD_TESTS=OFF \ + -DENABLE_JAVA_SDK=OFF .. make - name: Perform CodeQL Analysis