From 83e3874670baadc9c14cb237bdf8c47787897141 Mon Sep 17 00:00:00 2001 From: Joao Matos Date: Tue, 24 Nov 2020 19:06:26 +0000 Subject: [PATCH] Add install_tools target to build.sh and fix LLVM CI. --- .github/workflows/llvm.yml | 4 ++++ build/build.sh | 3 +++ 2 files changed, 7 insertions(+) diff --git a/.github/workflows/llvm.yml b/.github/workflows/llvm.yml index fffe82ab..1a4c7c97 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 212fe7b3..9e340583 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 ;;