-
Notifications
You must be signed in to change notification settings - Fork 2
74 lines (68 loc) · 2.18 KB
/
ci.yml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: Build documentation
on:
workflow_dispatch:
push:
branches:
- main
tags:
- v**
pull_request:
branches:
- main
jobs:
build_latex:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v4
- name: Compile LaTeX document
uses: xu-cheng/latex-action@v3
with:
working_directory: docs
root_file: SMAesH.tex
- name: Upload PDF file
uses: actions/upload-artifact@v4
with:
name: docs
path: docs/SMAesH.pdf
release:
needs: [build_latex]
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: docs
path: release
- name: Release
uses: softprops/action-gh-release@v2
with:
body: |
View CHANGELOG.md for full changes.
files: |
release/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
functest:
runs-on: ubuntu-24.04
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
submodules: true
- run: sudo apt-get install -y yosys verilator iverilog
- run: make func-tests
formal_verif_matchi:
runs-on: ubuntu-24.04
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
submodules: true
- run: sudo apt-get install -y yosys iverilog
- run: mkdir verif-tools
- run: wget https://github.com/cassiersg/matchi/releases/download/v0.1.0/matchi -P ./verif-tools
- run: chmod +x ${{ github.workspace }}/verif-tools/matchi
- run: (cd verif-tools && curl -L https://github.com/simple-crypto/hw-devtools/releases/download/v241002/hw-devtools.tar.gz | tar xz && sudo apt install *.deb)
- run: (cd verif-tools && wget https://github.com/cassiersg/matchi/archive/refs/tags/v0.1.0.tar.gz -qO- | tar zxf -)
- run: make formal-tests MATCHI_CELLS=${{ github.workspace }}/verif-tools/matchi-0.1.0/matchi_cells MATCHI_BIN=${{ github.workspace }}/verif-tools/matchi