Skip to content

Commit

Permalink
Update apt to install LLVM 17 and remove clang-tools-17 installation
Browse files Browse the repository at this point in the history
  • Loading branch information
SavenkovIgor committed Mar 16, 2024
1 parent f84f30a commit 885ddc8
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/AppBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,13 @@ jobs:
clang-format-version: 16

- name: Update apt
run: sudo apt update
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 17 all
- name: Install clang-tools-17 for modules deps search
run: sudo apt install clang-tools-17
# - name: Install clang-tools-17 for modules deps search
# run: sudo apt install clang-tools-17

- name: Install latest cmake and ninja
uses: lukka/get-cmake@latest
Expand Down

0 comments on commit 885ddc8

Please sign in to comment.