Skip to content

Commit

Permalink
Use LLVM installation script in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
p-senichenkov committed Nov 27, 2024
1 parent 0f75611 commit b9ed047
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/composite-actions/download-libraries/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,15 @@ runs:
- name: Install build tools
run: |
sudo apt-get update -y
sudo apt-get install gcc-10 g++-10 clang-19 cmake build-essential -y
sudo apt-get install gcc-10 g++-10 cmake build-essential -y
shell: bash

- name: Install clang
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
./llvm.sh 18
- name: Make lib directory
run: |
mkdir -p lib
Expand Down

0 comments on commit b9ed047

Please sign in to comment.