We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15b3ee1 commit a8926f4Copy full SHA for a8926f4
.github/workflows/ci.yml
@@ -13,7 +13,7 @@ env:
13
14
jobs:
15
build:
16
- runs-on: ubuntu-latest
+ runs-on: ubuntu-20-04
17
18
strategy:
19
fail-fast: false
@@ -24,7 +24,7 @@ jobs:
24
- { gcc: "libgccjit12.so", extra: "--no-default-features", artifacts_branch: "gcc12" }
25
commands: [
26
"--mini-tests",
27
- "--std-tests",
+ "--std-tests --asm-tests",
28
"--test-libcore",
29
"--extended-rand-tests",
30
"--extended-regex-example-tests",
@@ -43,7 +43,8 @@ jobs:
43
path: llvm
44
45
- name: Install packages
46
- run: sudo apt-get install ninja-build ripgrep
+ # `llvm-10-tools` is needed to install `FileCheck` which is used for asm tests.
47
+ run: sudo apt-get install ninja-build ripgrep llvm-10-tools
48
49
- name: Download artifact
50
uses: dawidd6/action-download-artifact@v2
0 commit comments