separate iverilog install and clone

This commit is contained in:
Fischer Moseley 2023-02-04 12:06:58 -05:00
parent 88e692ab77
commit 538e3b654c
1 changed files with 9 additions and 3 deletions

View File

@ -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