Skip to content

Commit ea632e0

Browse files
committed
fix2
1 parent 36f3340 commit ea632e0

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,16 @@ jobs:
2525
- name: Install dependencies
2626
run: |
2727
sudo apt-get update
28-
sudo apt-get install -y clang-23 g++-mingw-w64-i686
28+
sudo apt-get install -y wget gnupg software-properties-common lsb-release
29+
30+
# Add LLVM APT repository
31+
wget https://apt.llvm.org/llvm-snapshot.gpg.key
32+
sudo apt-key add llvm-snapshot.gpg.key
33+
sudo add-apt-repository "deb http://apt.llvm.org/$(lsb_release -cs)/ llvm-toolchain-$(lsb_release -cs)-23 main"
34+
sudo apt-get update
35+
36+
# Install Clang 23
37+
sudo apt-get install -y clang-23 clang++-23 g++-mingw-w64-i686
2938
3039
- name: Get latest plugin-sdk commit
3140
id: plugin-sdk-ref

0 commit comments

Comments
 (0)