add provisions for version of iverilog in apt lists
This commit is contained in:
parent
1eaa3cddc5
commit
e481d13b63
|
|
@ -1,7 +1,7 @@
|
||||||
name: run_all_tests
|
name: run_all_tests
|
||||||
on: [push]
|
on: [push]
|
||||||
jobs:
|
jobs:
|
||||||
install-iverilog:
|
install-iverilog-source:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- run: sudo apt install bison flex g++ gcc gperf
|
- run: sudo apt install bison flex g++ gcc gperf
|
||||||
|
|
@ -16,7 +16,7 @@ jobs:
|
||||||
working-directory: iverilog/
|
working-directory: iverilog/
|
||||||
|
|
||||||
- name: make
|
- name: make
|
||||||
run: make -j`nproc`
|
run: make -j$(nproc)
|
||||||
working-directory: iverilog/
|
working-directory: iverilog/
|
||||||
|
|
||||||
- name: make check
|
- name: make check
|
||||||
|
|
@ -26,3 +26,8 @@ jobs:
|
||||||
- name: sudo make install
|
- name: sudo make install
|
||||||
run: sudo make install
|
run: sudo make install
|
||||||
working-directory: iverilog/
|
working-directory: iverilog/
|
||||||
|
|
||||||
|
install-iverilog-apt:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- run: sudo apt install iverilog
|
||||||
Loading…
Reference in New Issue