We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d40f86a commit 6543185Copy full SHA for 6543185
.github/workflows/ci.yml
@@ -8,9 +8,7 @@ on:
8
9
jobs:
10
build:
11
-
12
runs-on: ubuntu-latest
13
14
steps:
15
- uses: actions/checkout@v3
16
- name: Set up Python
@@ -19,18 +17,12 @@ jobs:
19
17
python-version: '3.x'
20
18
- name: install dependencies
21
run: |
22
- sudo apt install nasm
23
python -m pip install --upgrade pip
24
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 ..
+ - name: Install iverilog
+ run: |
+ sudo apt-get update
+ sudo apt-get install iverilog
34
- name: make test
35
run: make test
36
- name: make
0 commit comments