-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
65b82b8
commit 78ce338
Showing
7 changed files
with
11 additions
and
34 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,12 +16,12 @@ jobs: | |
# This workflow contains a single job called "build" | ||
setup-develop-env: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-22.04 | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup XiangShan environment | ||
run: | | ||
|
@@ -34,21 +34,3 @@ jobs: | |
run: | | ||
cd $GITHUB_WORKSPACE | ||
source ./env-test.sh | ||
# Github hosted CI does not support XiangShan | ||
sim-xiangshan: | ||
runs-on: self-hosted | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Sim XiangShan using Verilator | ||
run: | | ||
git config --global url."https://github.com/".insteadOf [email protected]: | ||
git config --global url."https://".insteadOf git:// | ||
cd $GITHUB_WORKSPACE | ||
source ./env.sh | ||
make -C nexus-am clean | ||
source ./setup.sh | ||
cd $GITHUB_WORKSPACE/XiangShan | ||
make clean | ||
make emu CONFIG=MinimalConfig | ||
./build/emu -b 0 -e 0 -i ./ready-to-run/linux.bin |
Submodule NEMU
updated
5 files
+6 −0 | Kconfig | |
+22 −2 | include/cpu/difftest.h | |
+7 −2 | src/cpu/difftest/dut.c | |
+7 −0 | src/isa/riscv64/difftest/dut.c | |
+1 −0 | src/isa/riscv64/system/priv.c |
Submodule NutShell
updated
10 files
+2 −24 | .github/workflows/main.yml | |
+1 −2 | .mill-version | |
+28 −29 | Makefile | |
+12 −34 | build.sc | |
+1 −1 | difftest | |
+0 −75 | generator/chisel3/src/main/scala/TopMain.scala | |
+0 −52 | scripts/extract_files.sh | |
+9 −9 | src/main/scala/nutcore/NutCoreTrap.scala | |
+2 −2 | src/test/scala/TopMain.scala | |
+0 −167 | src/test/scala/cache/CacheTest.scala |
Submodule XiangShan
updated
52 files
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
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
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