From 65140e2bb6386a91ae806277aeccdf8085a64708 Mon Sep 17 00:00:00 2001 From: Tomasz Hemperek Date: Mon, 23 Jan 2023 10:08:18 +0100 Subject: [PATCH] Update verilator in CI (#222) --- azure-pipelines.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 976cfae..51b5e8f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -87,11 +87,11 @@ jobs: - script: | sudo apt-get update - sudo apt-get install git make autoconf g++ flex bison # First time prerequisites - sudo apt-get install libfl2 # Ubuntu only (ignore if gives error) - sudo apt-get install libfl-dev # Ubuntu only (ignore if gives error) - git clone http://git.veripool.org/git/verilator -b v4.106 --depth=1 - cd verilator && git apply ../tests/verilator.include-limits.patch && cd .. + sudo apt-get install git make autoconf g++ flex bison + sudo apt-get install libfl2 + sudo apt-get install libfl-dev + sudo apt-get install help2man + git clone http://git.veripool.org/git/verilator --depth=1 cd verilator && autoconf && ./configure && make -j2 && sudo make install && cd .. displayName: Compile and Install Verilator on Linux condition: and( eq( variables['Agent.OS'], 'Linux' ), eq(variables['SIM'], 'verilator'))