ci: Use TOOLCHAIN=llvm to test LLVM builds
This commit is contained in:
parent
64e9c11daa
commit
4e349fe000
|
@ -12,10 +12,10 @@ jobs:
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: sudo apt-get update && sudo apt-get install git build-essential autoconf automake nasm curl mtools clang -y
|
run: sudo apt-get update && sudo apt-get install git build-essential autoconf automake nasm curl mtools clang llvm -y
|
||||||
|
|
||||||
- name: Build the bootloader (gcc)
|
- name: Build the bootloader (GNU)
|
||||||
run: ./autogen.sh CC=gcc --enable-werror && make all && make maintainer-clean
|
run: ./autogen.sh --enable-werror && make all && make maintainer-clean
|
||||||
|
|
||||||
- name: Build the bootloader (clang)
|
- name: Build the bootloader (LLVM)
|
||||||
run: ./autogen.sh CC=clang --enable-werror && make all && make maintainer-clean
|
run: ./autogen.sh TOOLCHAIN=llvm --enable-werror && make all && make maintainer-clean
|
||||||
|
|
Loading…
Reference in New Issue