mirror of
https://github.com/chipsalliance/rocket-chip.git
synced 2026-05-29 00:30:12 +08:00
117 lines
4.1 KiB
YAML
117 lines
4.1 KiB
YAML
# This file describes the GitHub Actions workflow for continuous integration of rocket-chip.
|
|
#
|
|
# See
|
|
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions
|
|
# for API reference documentation on this file format.
|
|
|
|
name: Mill Continuous Integration
|
|
env:
|
|
USER: runner
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- dev
|
|
- master
|
|
- chisel3_port
|
|
|
|
jobs:
|
|
riscv-test:
|
|
name: riscv-tests
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
config: [DefaultConfig, DefaultBufferlessConfig, DefaultRV32Config, TinyConfig, DefaultFP16Config, DefaultBConfig, DefaultRV32BConfig]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: 'true'
|
|
|
|
- uses: cachix/install-nix-action@v19
|
|
with:
|
|
install_url: https://releases.nixos.org/nix/nix-2.13.3/install
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
|
|
- name: Coursier Cache
|
|
uses: coursier/cache-action@v5
|
|
|
|
- name: run riscv-tests
|
|
run: |
|
|
nix --experimental-features 'nix-command flakes' develop -c mill -i -j 0 "runnable-riscv-test[freechips.rocketchip.system.TestHarness,freechips.rocketchip.system.${{ matrix.config }},_,_].run"
|
|
|
|
emulator:
|
|
name: emulator
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
config: [DefaultSmallConfig, DualBankConfig, DualChannelConfig, DualChannelDualBankConfig, RoccExampleConfig, Edge128BitConfig, Edge32BitConfig, QuadChannelBenchmarkConfig, EightChannelConfig, DualCoreConfig, MemPortOnlyConfig, MMIOPortOnlyConfig, CloneTileConfig, HypervisorConfig]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: 'true'
|
|
|
|
- uses: cachix/install-nix-action@v19
|
|
with:
|
|
install_url: https://releases.nixos.org/nix/nix-2.13.3/install
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
|
|
- name: Coursier Cache
|
|
uses: coursier/cache-action@v5
|
|
|
|
- name: compile emulator
|
|
run: |
|
|
nix --experimental-features 'nix-command flakes' develop -c mill -i "emulator[freechips.rocketchip.system.TestHarness,freechips.rocketchip.system.${{ matrix.config }}].elf"
|
|
|
|
riscv-arch-test:
|
|
name: riscv-arch-test
|
|
runs-on: [self-hosted, linux]
|
|
if: ${{ false }} # disable for now, I prefer adding firesim-based simulation framework in the future.
|
|
strategy:
|
|
matrix:
|
|
config: ["DefaultRV32Config,32,RV32IMACZicsr_Zifencei", "DefaultConfig,64,RV64IMACZicsr_Zifencei"]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: 'true'
|
|
|
|
- name: install nix
|
|
uses: cachix/install-nix-action@v19
|
|
with:
|
|
install_url: https://releases.nixos.org/nix/nix-2.13.3/install
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
|
|
- name: Coursier Cache
|
|
uses: coursier/cache-action@v6
|
|
|
|
- name: run riscv-arch-test
|
|
run: |
|
|
nix develop -c mill -i -j 0 "runnable-arch-test[freechips.rocketchip.system.TestHarness,freechips.rocketchip.system.${{ matrix.config }}].run"
|
|
|
|
jtag-dtm-test:
|
|
name: jtag-dtm-test
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
config: ["freechips.rocketchip.system.WithJtagDTMSystem_freechips.rocketchip.system.DefaultConfig", "freechips.rocketchip.system.WithJtagDTMSystem_freechips.rocketchip.system.DefaultRV32Config", "freechips.rocketchip.system.WithJtagDTMSystem_freechips.rocketchip.system.WithDebugSBASystem_freechips.rocketchip.system.DefaultConfig", "freechips.rocketchip.system.WithJtagDTMSystem_freechips.rocketchip.system.WithDebugSBASystem_freechips.rocketchip.system.DefaultRV32Config"]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: 'true'
|
|
|
|
- name: install nix
|
|
uses: cachix/install-nix-action@v19
|
|
with:
|
|
install_url: https://releases.nixos.org/nix/nix-2.13.3/install
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
|
|
- name: Coursier Cache
|
|
uses: coursier/cache-action@v6
|
|
|
|
- name: run jtag-dtm-test
|
|
run: |
|
|
nix develop -c mill -i -j 0 "runnable-jtag-dtm-test[freechips.rocketchip.system.TestHarness,${{ matrix.config }},_,_,_].run"
|