Skip to content

Commit 1af4f77

Browse files
committed
Update on workflow setup
Signed-off-by: Anderson Ignacio da Silva <[email protected]>
1 parent 8ad8c61 commit 1af4f77

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

.github/workflows/lint.yaml

+10-6
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,28 @@ on: [push, pull_request]
33

44
jobs:
55
lint_nox_sim:
6-
runs-on: ubuntu-20.04
6+
runs-on: ubuntu-22.04
77
steps:
88
- name: Install Verilator
99
uses: actions/checkout@v3
1010
with:
1111
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
1620
git clone https://github.com/verilator/verilator.git
1721
cd verilator
1822
git checkout stable
1923
autoconf
2024
./configure
2125
make -j $(nproc)
2226
sudo make install
23-
- name: Build model DUT
27+
- name: Run lintT
2428
uses: actions/checkout@v3
2529
- run: |
2630
make RUN_CMD="" lint

0 commit comments

Comments
 (0)