Skip to content

Commit

Permalink
test again...
Browse files Browse the repository at this point in the history
  • Loading branch information
radkesvat committed Jun 18, 2024
1 parent 86dd147 commit 7dabf53
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/clang_static_analyzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,19 @@ jobs:
- name: install deps
run: |
sudo apt-get update && sudo apt-get install build-essential -y && sudo snap install cmake --classic && sudo wget https://apt.llvm.org/llvm.sh && sudo chmod u+x llvm.sh && sudo ./llvm.sh 19 all
mkdir build
cd build

- name: Configure CMake
run: >
scan-build-19 cmake
scan-build-19 cmake -B ${{ steps.strings.outputs.build-output-dir }}
-DCMAKE_BUILD_TYPE=Release
-G"Unix Makefiles"
-S ${{ github.workspace }}
- name: Build
# Build your program with the given configuration.
run: scan-build-19 make
run: |
cd ${{ steps.strings.outputs.build-output-dir }}
scan-build-19 make

0 comments on commit 7dabf53

Please sign in to comment.