Add MMU SV32 Documentation for CV32A6 #176
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2021 OpenHW Group | |
# Licensed under the Apache License, Version 2.0, see LICENSE for details. | |
# SPDX-License-Identifier: Apache-2.0 | |
# Run functional regression checks | |
name: ci | |
on: [push, pull_request] | |
jobs: | |
riscv-tests: | |
name: riscv-tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
testcase: [asm-tests, mul, amo, fp, benchmarks] | |
env: | |
RISCV: /riscv | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Prepare | |
run: ci/setup.sh | |
- name: run tests | |
run: make run-${{ matrix.testcase}}-verilator |