Skip to content

Commit

Permalink
First Travis-CI iteration.
Browse files Browse the repository at this point in the history
  • Loading branch information
badlogic committed May 3, 2018
1 parent 92d477a commit 1e2249e
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .maven.settings
@@ -0,0 +1,10 @@
<settings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/SETTINGS/1.0.0" xsi:schemalocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>sonatype-nexus-snapshots</id>
<username>${env.SONATYPE_USERNAME}</username>
<password>${env.SONATYPE_PASSWORD}</password>
</server>
</servers>
</settings>
19 changes: 19 additions & 0 deletions .travis.yml
@@ -0,0 +1,19 @@
dist: trusty
sudo: true
language: java
git:
depth: 1
branches:
only:
- master
cache:
directories:
- $HOME/.m2
language: java
jdk: oraclejdk8

before_install:
-

script:
- ant -f build.xml -Dbuild-natives=true -Dversion=nightly -v

0 comments on commit 1e2249e

Please sign in to comment.