diff options
author | Florian Zschocke <florian.zschocke@devolo.de> | 2016-12-12 13:34:17 +0100 |
---|---|---|
committer | Florian Zschocke <florian.zschocke@devolo.de> | 2017-01-02 12:52:43 +0100 |
commit | ac1e8f8e5aa2ec074668ec45d5c64633907743ea (patch) | |
tree | df3e7d82f5d6c0c759f55d6b9b8b81b115da6c0b /.travis.yml | |
parent | d10fe0d8fd614f6ae6606179b0326bdc6a5f6af8 (diff) | |
download | gitblit-ac1e8f8e5aa2ec074668ec45d5c64633907743ea.tar.gz gitblit-ac1e8f8e5aa2ec074668ec45d5c64633907743ea.zip |
Add definition file for Travis CI
Add the most basic build definition file for Travis CI. It only
defines the project language as Java. For the rest the defaults
are kept as Travis seems to work fine with them.
We add `.travis.yml` as a dotfile in order not to clutter the
top directory with too much non-project files.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..a98b7603 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,2 @@ +language: java + |