diff options
author | Marcelina KoĆcielnicka <mwk@0x04.net> | 2021-05-24 17:18:03 +0200 |
---|---|---|
committer | Marcelina KoĆcielnicka <mwk@0x04.net> | 2021-05-24 17:18:03 +0200 |
commit | c3e65a4ce0e0f14b279441c17e76b6c2ca9a7444 (patch) | |
tree | 80930aae18c9d7bc61f56bcf11ccff955234f939 /.travis/setup.sh | |
parent | b6721aa9d824ec5b4ec1c61167b53bab62fb1e01 (diff) | |
download | yosys-c3e65a4ce0e0f14b279441c17e76b6c2ca9a7444.tar.gz yosys-c3e65a4ce0e0f14b279441c17e76b6c2ca9a7444.tar.bz2 yosys-c3e65a4ce0e0f14b279441c17e76b6c2ca9a7444.zip |
Remove Travis CI.
It has been replaced by GitHub Actions, and travis-ci.org is shutting
down in a few days anyway.
Diffstat (limited to '.travis/setup.sh')
-rwxr-xr-x | .travis/setup.sh | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/.travis/setup.sh b/.travis/setup.sh deleted file mode 100755 index 02879b974..000000000 --- a/.travis/setup.sh +++ /dev/null @@ -1,63 +0,0 @@ -#! /bin/bash - -set -e - -source .travis/common.sh - -########################################################################## - -# Output status information. -( - set +e - set -x - git status - git branch -v - git log -n 5 --graph - git log --format=oneline -n 20 --graph -) -echo -echo -en 'travis_fold:end:before_install.git\\r' -echo - -########################################################################## - -# Mac OS X specific setup. -if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then - ( - echo - echo 'Setting up brew...' && echo -en 'travis_fold:start:before_install.brew\\r' - echo - brew update - brew tap Homebrew/bundle - brew bundle - brew install ccache - echo - echo -en 'travis_fold:end:before_install.brew\\r' - echo - ) -fi - -########################################################################## - -# Install iverilog -( - if [ ! -e ~/.local-bin/bin/iverilog ]; then - echo - echo 'Building iverilog...' && echo -en 'travis_fold:start:before_install.iverilog\\r' - echo - mkdir -p ~/.local-src - mkdir -p ~/.local-bin - cd ~/.local-src - git clone git://github.com/steveicarus/iverilog.git - cd iverilog - autoconf - CC=gcc CXX=g++ ./configure --prefix=$HOME/.local-bin - make - make install - echo - echo -en 'travis_fold:end:before_install.iverilog\\r' - echo - fi -) - -########################################################################## |