Commit 1af4f77 1 parent 8ad8c61 commit 1af4f77 Copy full SHA for 1af4f77
File tree 1 file changed +10
-6
lines changed
1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -3,24 +3,28 @@ on: [push, pull_request]
3
3
4
4
jobs :
5
5
lint_nox_sim :
6
- runs-on : ubuntu-20 .04
6
+ runs-on : ubuntu-22 .04
7
7
steps :
8
8
- name : Install Verilator
9
9
uses : actions/checkout@v3
10
10
with :
11
11
submodules : ' recursive'
12
- - run : |
13
- sudo apt-get update -y
14
- sudo apt-get upgrade -y
15
- sudo apt install -y --no-install-recommends make g++ perl python3 autoconf flex bison libfl2 libfl-dev zlibc zlib1g zlib1g-dev
12
+ run : |
13
+ sudo apt update -y
14
+ sudo apt-get install git help2man perl python3 make autoconf g++ flex bison ccache -fy
15
+ sudo apt-get install libunwind-dev libgoogle-perftools-dev numactl perl-doc -fy
16
+ sudo apt-get install libfl2 -fy # Ubuntu only (ignore if gives error)
17
+ sudo apt-get install libfl-dev -fy # Ubuntu only (ignore if gives error)
18
+ sudo apt-get install zlib1g zlib1g-dev -fy # Ubuntu only (ignore if gives error)
19
+ sudo apt-get install lcov -fy
16
20
git clone https://github.com/verilator/verilator.git
17
21
cd verilator
18
22
git checkout stable
19
23
autoconf
20
24
./configure
21
25
make -j $(nproc)
22
26
sudo make install
23
- - name : Build model DUT
27
+ - name : Run lintT
24
28
uses : actions/checkout@v3
25
29
- run : |
26
30
make RUN_CMD="" lint
You can’t perform that action at this time.
0 commit comments