Skip to content

Commit

Permalink
Update Clang installation in AppBuild workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SavenkovIgor committed Mar 25, 2024
1 parent 4258aaf commit ff3ca6a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/AppBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,14 @@ jobs:
steps:
- uses: actions/checkout@v4

# - name: Install Clang 17.0
# run: sudo apt update && sudo apt install -y clang-17

- name: Install Clang 17.0
run: sudo apt update && sudo apt install -y clang-17
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 17 all
- name: Run clang-format style check
uses: jidicula/[email protected]
Expand Down

0 comments on commit ff3ca6a

Please sign in to comment.