Skip to content

Commit 83e3874

Browse files
committed
Add install_tools target to build.sh and fix LLVM CI.
1 parent c42d1df commit 83e3874

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/llvm.yml

+4
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ jobs:
4545
shell: powershell
4646
run: build/intrin.ps1
4747

48+
- name: Install dependencies
49+
shell: bash
50+
run: build/build.sh install_tools
51+
4852
- name: Clone LLVM
4953
shell: bash
5054
run: build/premake.sh --file=build/scripts/LLVM.lua clone_llvm

build/build.sh

+3
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,9 @@ case "$cmd" in
181181
download_llvm)
182182
download_llvm
183183
;;
184+
install_tools)
185+
download_premake
186+
;;
184187
*)
185188
build
186189
;;

0 commit comments

Comments
 (0)