aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2016-11-16 11:04:17 +0100
committerMarc André Tanner <mat@brain-dump.org>2016-11-16 11:04:17 +0100
commit1288db6bdeb0d5f9b24b208603e16871ff59cffc (patch)
treeda4f7b825e684f6fe9bcc60717856d11d14dab52
parent63ce80f847a47096db4203ea1f11bce38e67b722 (diff)
downloadvis-1288db6bdeb0d5f9b24b208603e16871ff59cffc.tar.gz
vis-1288db6bdeb0d5f9b24b208603e16871ff59cffc.tar.xz
test: remove travis CI integration
Instead we will only run the desired tests from .travis.yml.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8eea917..a565655 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,9 @@
test:
@$(MAKE) -C core
@$(MAKE) -C lua
- @if [ -z "$$CI" -o "$$TRAVIS_OS_NAME" = "linux" ]; then $(MAKE) -C vis; else echo "Skipping vis tests"; fi
+ @$(MAKE) -C vis
@$(MAKE) -C sam
- @if [ -z "$$CI" ]; then $(MAKE) -C vim; else echo "Skipping vim tests"; fi
+ @$(MAKE) -C vim
clean:
@$(MAKE) -C core clean