Skip to content

Commit

Permalink
Fixed LLVM linking in action
Browse files Browse the repository at this point in the history
  • Loading branch information
leventeBajczi committed Jul 30, 2023
1 parent 6160426 commit 00c927c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/actions/install-llvm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ runs:
# sudo ln -sf $(which llvm-config-${{inputs.version}}) /usr/bin/llvm-config
wget https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.6/clang+llvm-15.0.6-x86_64-linux-gnu-ubuntu-18.04.tar.xz -O llvm.tar.xz
sudo tar xvJf llvm.tar.xz --directory /opt
echo "/opt/*/bin" >> $GITHUB_PATH
sudo ln -sf /opt/clang+llvm-15.0.6-x86_64-linux-gnu-ubuntu-18.04/bin/clang /usr/bin/clang
sudo ln -sf /opt/clang+llvm-15.0.6-x86_64-linux-gnu-ubuntu-18.04/bin/llvm-config /usr/bin/llvm-config
- name: Test version
shell: bash
run: |
Expand Down

0 comments on commit 00c927c

Please sign in to comment.