From e481d13b63f8c68c31e9aedc55cfe5bd044aab61 Mon Sep 17 00:00:00 2001 From: Fischer Moseley Date: Sat, 4 Feb 2023 12:32:24 -0500 Subject: [PATCH] add provisions for version of iverilog in apt lists --- .github/workflows/run_all_tests.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run_all_tests.yml b/.github/workflows/run_all_tests.yml index 01602ed..6c2c162 100644 --- a/.github/workflows/run_all_tests.yml +++ b/.github/workflows/run_all_tests.yml @@ -1,7 +1,7 @@ name: run_all_tests on: [push] jobs: - install-iverilog: + install-iverilog-source: runs-on: ubuntu-latest steps: - run: sudo apt install bison flex g++ gcc gperf @@ -16,7 +16,7 @@ jobs: working-directory: iverilog/ - name: make - run: make -j`nproc` + run: make -j$(nproc) working-directory: iverilog/ - name: make check @@ -25,4 +25,9 @@ jobs: - name: sudo make install run: sudo make install - working-directory: iverilog/ \ No newline at end of file + working-directory: iverilog/ + + install-iverilog-apt: + runs-on: ubuntu-latest + steps: + - run: sudo apt install iverilog \ No newline at end of file