fix(rva, trigger): BP from trigger should be raised first, rather than misaligned. #59
Workflow file for this run
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
name: CI for difftest | |
on: | |
push: | |
branches: [difftest] | |
pull_request: | |
branches: [difftest] | |
jobs: | |
build: | |
name: Build spike-so for difftest | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
cpu: [xiangshan, nutshell, rocket_chip] | |
continue-on-error: false | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: sudo xargs apt-get install -y < .github/workflows/apt-packages.txt | |
- name: build spike-so | |
run: | | |
BUILD_CPU=${{ matrix.cpu }} | |
make -C difftest CPU=${BUILD_CPU^^} -j4 | |
- name: archive spike-so artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: riscv64-${{ matrix.cpu }}-spike-so | |
path: difftest/build/riscv64-spike-so |