You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- if [ ! -f verilator/INSTALLED ]; then git clone https://github.com/verilator/verilator.git; fi
- cd $TRAVIS_BUILD_DIR/verilator && if [ "$(git pull)" != "Already up to date." ] || [ ! -f INSTALLED ]; then autoconf && ./configure && make -j2 && touch INSTALLED; fi && sudo make install && cd ..