aboutsummaryrefslogtreecommitdiffstats
path: root/.travis/common.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/common.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/common.sh')
-rw-r--r--.travis/common.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/.travis/common.sh b/.travis/common.sh
deleted file mode 100644
index 8eecc4c09..000000000
--- a/.travis/common.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#! /bin/bash
-
-# Setup the CC / CXX from the matrix config
-eval "${MATRIX_EVAL}"
-
-# Look for location binaries first
-export PATH="$HOME/.local-bin/bin:$PATH"
-
-# OS X specific common setup
-if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
- export PATH="/usr/local/opt/ccache/libexec:$PATH"
-fi
-
-# Parallel builds!
-MAKEFLAGS="-j 2"