File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 17
17
steps :
18
18
# Setup
19
19
- uses : actions/checkout@v2
20
- - run : sudo apt update
21
- - run : sudo apt install libelf-dev qemu-system-x86 busybox-static
20
+ - run : wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
21
+ - run : sudo add-apt-repository deb http://apt.llvm.org/focal/llvm-toolchain-11 main
22
+ - run : sudo apt-get update -y
23
+ - run : sudo apt-get install -y clang-11 libelf-dev qemu-system-x86 busybox-static
22
24
- run : rustup default nightly-2020-08-27
23
25
- run : rustup component add rustfmt
24
26
- run : rustup component add rust-src
33
35
run : mkdir build && mv .config build/.config
34
36
35
37
- if : matrix.outputdir == 'src'
36
- run : make CC=clang-10 LLVM_CONFIG_PATH=llvm-config-10 -j3
38
+ run : make CC=clang-11 LLVM_CONFIG_PATH=llvm-config-11 -j3
37
39
- if : matrix.outputdir == 'build'
38
- run : make O=build CC=clang-10 LLVM_CONFIG_PATH=llvm-config-10 -j3
40
+ run : make O=build CC=clang-11 LLVM_CONFIG_PATH=llvm-config-11 -j3
39
41
40
42
# Run
41
43
- if : matrix.module == 'builtin'
You can’t perform that action at this time.
0 commit comments