Skip to content

Commit d04e66f

Browse files
Run assembly tests in the CI
1 parent ccfe7d8 commit d04e66f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313

1414
jobs:
1515
build:
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-20.04
1717

1818
strategy:
1919
fail-fast: false
@@ -24,7 +24,7 @@ jobs:
2424
- { gcc: "libgccjit12.so", extra: "--no-default-features", artifacts_branch: "gcc12" }
2525
commands: [
2626
"--mini-tests",
27-
"--std-tests",
27+
"--std-tests --asm-tests",
2828
"--test-libcore",
2929
"--extended-rand-tests",
3030
"--extended-regex-example-tests",
@@ -43,7 +43,8 @@ jobs:
4343
path: llvm
4444

4545
- name: Install packages
46-
run: sudo apt-get install ninja-build ripgrep
46+
# `llvm-10-tools` is needed to install the `FileCheck` binary which is used for asm tests.
47+
run: sudo apt-get install ninja-build ripgrep llvm-10-tools
4748

4849
- name: Download artifact
4950
uses: dawidd6/action-download-artifact@v2

0 commit comments

Comments
 (0)