Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit 2756cef

Browse files
committed
fix: CI - Add command to build and clone recursive
1 parent c70b4ba commit 2756cef

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ jobs:
8282
steps:
8383
- name: Checkout repository
8484
uses: actions/checkout@v4
85+
with:
86+
submodules: recursive
8587

8688
# Initializes the CodeQL tools for scanning.
8789
- name: Initialize CodeQL
@@ -106,9 +108,12 @@ jobs:
106108
# If the Autobuild fails above, remove it and uncomment the following three lines.
107109
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
108110

109-
# - run: |
110-
# echo "Run, Build Application using script"
111-
# ./location_of_script_within_repo/buildscript.sh
111+
- run: |
112+
./install_deps.sh
113+
mkdir build && cd build
114+
cmake ..
115+
CC=gcc-8 make -j $(sysctl -n hw.ncp)
116+
ls -la
112117
113118
- name: Perform CodeQL Analysis
114119
uses: github/codeql-action/analyze@v3

controllers/llamaCPP.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
using namespace inferences;
1414
using json = nlohmann::json;
1515

16-
// To store state of each inference request
1716
struct State {
1817
bool isStopped = false;
1918
int task_id;

0 commit comments

Comments
 (0)