diff --git a/.github/workflows/llvm.yml b/.github/workflows/llvm.yml index fffe82abfc..1a4c7c9740 100644 --- a/.github/workflows/llvm.yml +++ b/.github/workflows/llvm.yml @@ -45,6 +45,10 @@ jobs: shell: powershell run: build/intrin.ps1 + - name: Install dependencies + shell: bash + run: build/build.sh install_tools + - name: Clone LLVM shell: bash run: build/premake.sh --file=build/scripts/LLVM.lua clone_llvm diff --git a/build/build.sh b/build/build.sh index 212fe7b37c..9e340583a2 100755 --- a/build/build.sh +++ b/build/build.sh @@ -181,6 +181,9 @@ case "$cmd" in download_llvm) download_llvm ;; + install_tools) + download_premake + ;; *) build ;;