diff options
-rw-r--r-- | .travis.yml | 6 | ||||
-rw-r--r-- | util/Makefile | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..b499bc94 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,6 @@ +notifications: + irc: "chat.freenode.net#krebs_incoming" +branches: + only: + - master +script: "make -C util test" diff --git a/util/Makefile b/util/Makefile index ab22947f..943a2ad3 100644 --- a/util/Makefile +++ b/util/Makefile @@ -1,7 +1,7 @@ usage:;cat Makefile test: - @export PATH="$(PWD)/bin:$(PATH)"; \ + @export PATH="$(CURDIR)/bin:$(PATH)"; \ tests="`find t -type f -executable`"; \ i=1; \ n=`echo "$$tests" | wc -l`; \ |