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'))