We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b060b8 commit 632c984Copy full SHA for 632c984
1 file changed
.github/workflows/test.yml
@@ -22,5 +22,18 @@ jobs:
22
sudo apt update
23
sudo apt install gcc-riscv64-unknown-elf
24
25
- - name: unit tests
+ - name: Install riscv-testsuite
26
+ run: |
27
+ git clone https://github.com/riscv/riscv-tests
28
+ cd riscv-tests
29
+ git submodule update --init --recursive
30
+ autoconf
31
+ ./configure
32
+ make
33
+ make install
34
+
35
+ - name: Unit tests
36
run: cargo t
37
38
+ - name: Official riscv-tests
39
+ run: RISCV_TESTSUITE=$HOME/riscv-tests ./build.sh riscv-testsuite
0 commit comments