aboutsummaryrefslogtreecommitdiffstats
path: root/.travis/build-and-test.sh
diff options
context:
space:
mode:
authorMarcelina Koƛcielnicka <mwk@0x04.net>2021-05-24 17:18:03 +0200
committerMarcelina Koƛcielnicka <mwk@0x04.net>2021-05-24 17:18:03 +0200
commitc3e65a4ce0e0f14b279441c17e76b6c2ca9a7444 (patch)
tree80930aae18c9d7bc61f56bcf11ccff955234f939 /.travis/build-and-test.sh
parentb6721aa9d824ec5b4ec1c61167b53bab62fb1e01 (diff)
downloadyosys-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/build-and-test.sh')
-rwxr-xr-x.travis/build-and-test.sh51
1 files changed, 0 insertions, 51 deletions
diff --git a/.travis/build-and-test.sh b/.travis/build-and-test.sh
deleted file mode 100755
index 801407d1e..000000000
--- a/.travis/build-and-test.sh
+++ /dev/null
@@ -1,51 +0,0 @@
-#! /bin/bash
-
-set -e
-
-source .travis/common.sh
-
-##########################################################################
-
-echo
-echo 'Configuring...' && echo -en 'travis_fold:start:script.configure\\r'
-echo
-
-if [ "$CONFIG" = "gcc" ]; then
- echo "Configuring for gcc."
- make config-gcc
-elif [ "$CONFIG" = "clang" ]; then
- echo "Configuring for clang."
- make config-clang
-fi
-
-echo
-echo -en 'travis_fold:end:script.configure\\r'
-echo
-
-##########################################################################
-
-echo
-echo 'Building...' && echo -en 'travis_fold:start:script.build\\r'
-echo
-
-make CC=$CC CXX=$CC LD=$CC
-
-echo
-echo -en 'travis_fold:end:script.build\\r'
-echo
-
-##########################################################################
-
-./yosys tests/simple/fiedler-cooley.v
-
-echo
-echo 'Testing...' && echo -en 'travis_fold:start:script.test\\r'
-echo
-
-make test
-
-echo
-echo -en 'travis_fold:end:script.test\\r'
-echo
-
-##########################################################################