File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ permissions:
12
12
env :
13
13
# Enable backtraces for easier debugging
14
14
RUST_BACKTRACE : 1
15
+ # For the run-make tests.
16
+ LLVM_BIN_DIR : /usr/bin
15
17
16
18
jobs :
17
19
build :
48
50
49
51
- name : Install packages
50
52
# `llvm-14-tools` is needed to install the `FileCheck` binary which is used for asm tests.
51
- run : sudo apt-get install ninja-build ripgrep llvm-14-tools
53
+ run : sudo apt-get install ninja-build ripgrep llvm-14-tools llvm libstdc++-11-dev
54
+
55
+ - run : which llvm-ar
52
56
53
57
- name : Install rustfmt & clippy
54
58
run : rustup component add rustfmt clippy
Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ permissions:
12
12
env :
13
13
# Enable backtraces for easier debugging
14
14
RUST_BACKTRACE : 1
15
+ # For the run-make tests.
16
+ LLVM_BIN_DIR : /usr/bin
15
17
16
18
jobs :
17
19
build :
36
38
uses : Swatinem/rust-cache@v2
37
39
38
40
- name : Install packages
39
- run : sudo apt-get install ninja-build ripgrep
41
+ run : sudo apt-get install ninja-build ripgrep llvm libstdc++-11-dev
40
42
41
43
- name : Download artifact
42
44
run : curl -LO https://github.com/rust-lang/gcc/releases/latest/download/gcc-15.deb
49
51
- name : Set env
50
52
run : |
51
53
echo "workspace="$GITHUB_WORKSPACE >> $GITHUB_ENV
52
-
53
-
54
54
55
55
- name : Build
56
56
run : |
You can’t perform that action at this time.
0 commit comments