Browse Source

Add install_tools target to build.sh and fix LLVM CI.

pull/1527/head
Joao Matos 5 years ago
parent
commit
83e3874670
  1. 4
      .github/workflows/llvm.yml
  2. 3
      build/build.sh

4
.github/workflows/llvm.yml

@ -45,6 +45,10 @@ jobs: @@ -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

3
build/build.sh

@ -181,6 +181,9 @@ case "$cmd" in @@ -181,6 +181,9 @@ case "$cmd" in
download_llvm)
download_llvm
;;
install_tools)
download_premake
;;
*)
build
;;

Loading…
Cancel
Save