From cdf85006ecf55279db127b88213a03db2597d16a Mon Sep 17 00:00:00 2001 From: dev0 Date: Fri, 26 Dec 2025 03:07:15 +0530 Subject: [PATCH] [WORKFLOW]: CI --- .github/workflows/ci.yaml | 2 +- .gitignore | 1 + .vscode/settings.json | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 55ad957..ba98551 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v4 - name: Install OpenSSL v3 (System) - run: sudo apt-get update && sudo apt-get install -y libssl-dev + run: sudo dnf update && sudo dnf install -y libssl-dev - name: Configure run: cmake --preset ${{ matrix.target }} diff --git a/.gitignore b/.gitignore index 5e2e34b..b23d456 100644 --- a/.gitignore +++ b/.gitignore @@ -51,3 +51,4 @@ .local/ out/ [Bb]uild +/compile_commands.json diff --git a/.vscode/settings.json b/.vscode/settings.json index c0dc405..0a73760 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,5 @@ { "editor.formatOnSave": true, - "C_Cpp.clang_format_fallbackStyle": "Microsoft" + "C_Cpp.clang_format_fallbackStyle": "Microsoft", + "cmake.copyCompileCommands": "${workspaceFolder}/compile_commands.json" } \ No newline at end of file