File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env sh
2
+
3
+ # Run from this directory
4
+ cd " $( dirname " $0 " ) " || (echo " Running from $( pwd) " && exit 1)
5
+
6
+ # Install dependencies
7
+ sudo apt update && sudo apt install -y ninja-build clang build-essential
8
+
9
+ # Download and install CMake
10
+ wget -qO- " https://github.com/Kitware/CMake/releases/download/v3.29.3/cmake-3.29.3-linux-x86_64.tar.gz" | tar --strip-components=1 -xz -C /usr/local
11
+
12
+ # Configure CMake
13
+ cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=gcc -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -G Ninja
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ profile:
19
19
# - <path/where/not/run/inspection>
20
20
21
21
# Execute shell command before Qodana execution (Applied in CI/CD pipeline)
22
- # bootstrap: sh ./prepare-qodana.sh
22
+ bootstrap : sh ./prepare-qodana.sh
23
23
24
24
# Install IDE plugins before Qodana execution (Applied in CI/CD pipeline)
25
25
# plugins:
You can’t perform that action at this time.
0 commit comments