separate iverilog install and clone
This commit is contained in:
parent
88e692ab77
commit
538e3b654c
|
|
@ -1,13 +1,19 @@
|
|||
name: run_all_tests
|
||||
on: [push]
|
||||
jobs:
|
||||
install-iverilog:
|
||||
clone-iverilog:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: sudo apt install bison flex g++ gcc
|
||||
- run: git clone https://github.com/steveicarus/iverilog.git
|
||||
- run: cd iverilog/
|
||||
- run: ls -lai
|
||||
|
||||
install-iverilog:
|
||||
runs-on: ubuntu-latest
|
||||
needs: clone-iverilog
|
||||
defaults:
|
||||
run:
|
||||
working_directory: iverilog
|
||||
steps:
|
||||
- run: sh ./autoconf.sh
|
||||
- run: ./configure
|
||||
- run: make
|
||||
|
|
|
|||
Loading…
Reference in New Issue