about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--.travis.yml24
-rw-r--r--README.md2
2 files changed, 0 insertions, 26 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 4ed47948..00000000
--- a/.travis.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-sudo: required
-dist: trusty
-language: cpp
-
-addons:
-  apt:
-    sources:
-      - ubuntu-toolchain-r-test
-    packages:
-      - valgrind
-      - libstdc++-5-dev  # default version is not valgrind-clean
-
-matrix:
-  include:
-    - env: COMMAND=./test_layers
-    - env: COMMAND=./test_apps
-
-script:
-  - $COMMAND
-
-notifications:
-  email:
-    on_success: never
-    on_failure: always
diff --git a/README.md b/README.md
index 7191d1ce..327f932d 100644
--- a/README.md
+++ b/README.md
@@ -16,8 +16,6 @@ $ echo $?
 7
 ```
 
-[![Build Status](https://api.travis-ci.org/akkartik/mu.svg?branch=master)](https://travis-ci.org/akkartik/mu)
-
 Rather than start from some syntax and introduce layers of translation to
 implement it, Mu starts from the processor's instruction set and tries to get
 to _some_ safe and clear syntax with as few layers of translation as possible.
30'>130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193