Skip to content

Commit 6543185

Browse files
committed
Update ci.yml
1 parent d40f86a commit 6543185

File tree

1 file changed

+4
-12
lines changed

1 file changed

+4
-12
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ on:
88

99
jobs:
1010
build:
11-
1211
runs-on: ubuntu-latest
13-
1412
steps:
1513
- uses: actions/checkout@v3
1614
- name: Set up Python
@@ -19,18 +17,12 @@ jobs:
1917
python-version: '3.x'
2018
- name: install dependencies
2119
run: |
22-
sudo apt install nasm
2320
python -m pip install --upgrade pip
2421
pip install -r requirements.txt
25-
- name: Install iverilog
26-
run: |
27-
git clone https://github.com/steveicarus/iverilog.git
28-
cd iverilog
29-
./autogen.sh
30-
./configure
31-
make
32-
make install
33-
cd ..
22+
- name: Install iverilog
23+
run: |
24+
sudo apt-get update
25+
sudo apt-get install iverilog
3426
- name: make test
3527
run: make test
3628
- name: make

0 commit comments

Comments
 (0)