Skip to content

Commit b601c8f

Browse files
committed
Merge pull request #17 from eincs/automatic-testing-with-travisci
Activate travis-ci for running unit tests automatically
2 parents 5c4539f + 2d20e29 commit b601c8f

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.travis.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@ language: java
22
jdk:
33
- openjdk7
44
- oraclejdk7
5-
branches:
6-
only:
7-
- master
8-
script: mvn clean validate -B
5+
before_install:
6+
- sudo add-apt-repository -y ppa:wnoronha/thrift
7+
- sudo apt-get update -qq
8+
- sudo apt-get install -qq thrift-compiler
9+
- which thrift
910
install: /bin/true
11+
script: mvn clean install -B
12+

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Haeinsa
22

3+
[![Build Status](https://travis-ci.org/VCNC/haeinsa.svg?branch=master)](https://travis-ci.org/VCNC/haeinsa)
4+
35
Haeinsa is linearly scalable multi-row, multi-table transaction library for HBase.
46
Haeinsa uses two-phase locking and optimistic concurrency control for implementing transaction.
57
The isolation level of transaction is serializable.

0 commit comments

Comments
 (0)