-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (33 loc) · 1.03 KB
/
Copy pathci.yml
File metadata and controls
35 lines (33 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: "21"
- name: Install RTL tools
run: sudo apt-get update && sudo apt-get install -y verilator yosys
- name: Unit tests and launcher
run: sbt test assembly
- name: Generated RTL simulation
run: scripts/test_generated_rtl.sh
- name: Generic streamed NTT matrix
run: scripts/test_streamed_ntt.py
- name: Pipelined butterfly matrix
run: scripts/test_pipelined_butterfly.py
- name: RNS polynomial multiplier
run: scripts/test_rns_polymul.py
- name: General-size NTTs
run: scripts/test_general_ntt.py
- name: Switch transpose simulation
run: scripts/test_switch_transpose.sh
- name: Yosys smoke qualification
run: scripts/test_yosys.sh
- name: Launcher smoke test
run: bash ngen.bat version