Run assembly tests in the CI

This commit is contained in:
Guillaume Gomez 2022-10-14 16:38:49 +02:00
parent ccfe7d8898
commit d04e66fd0f

View File

@ -13,7 +13,7 @@ env:
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-20.04
strategy: strategy:
fail-fast: false fail-fast: false
@ -24,7 +24,7 @@ jobs:
- { gcc: "libgccjit12.so", extra: "--no-default-features", artifacts_branch: "gcc12" } - { gcc: "libgccjit12.so", extra: "--no-default-features", artifacts_branch: "gcc12" }
commands: [ commands: [
"--mini-tests", "--mini-tests",
"--std-tests", "--std-tests --asm-tests",
"--test-libcore", "--test-libcore",
"--extended-rand-tests", "--extended-rand-tests",
"--extended-regex-example-tests", "--extended-regex-example-tests",
@ -43,7 +43,8 @@ jobs:
path: llvm path: llvm
- name: Install packages - name: Install packages
run: sudo apt-get install ninja-build ripgrep # `llvm-10-tools` is needed to install the `FileCheck` binary which is used for asm tests.
run: sudo apt-get install ninja-build ripgrep llvm-10-tools
- name: Download artifact - name: Download artifact
uses: dawidd6/action-download-artifact@v2 uses: dawidd6/action-download-artifact@v2