File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 1717 steps :
1818 # Setup
1919 - 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-focal-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
2224 - run : rustup default nightly-2020-08-27
2325 - run : rustup component add rustfmt
2426 - run : rustup component add rust-src
3335 run : mkdir build && mv .config build/.config
3436
3537 - 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
3739 - 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
3941
4042 # Run
4143 - if : matrix.module == 'builtin'
You can’t perform that action at this time.
0 commit comments