Skip to content

Commit

Permalink
Travis configuration and gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
twasyl committed Nov 24, 2016
1 parent f8a7aa1 commit f143770
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
15 changes: 15 additions & 0 deletions .gitignore
@@ -0,0 +1,15 @@
# IntelliJ IDEA files
out
.idea
*.iml
**/*.iml

# gradle files
.gradle/
gradle.properties
**/gradle.properties
build
**/build/

# Error files generated when JavaFX crashes
hs_err_*
9 changes: 5 additions & 4 deletions .travis.yml
@@ -1,19 +1,20 @@
language: java

sudo: false

jdk:
- oraclejdk8

os:
- linux

git:
depth: 5

branches:
only:
- master

sudo: required

install: true

script:
- chmod +x ./gradlew
- ./gradlew build
Expand Down
2 changes: 2 additions & 0 deletions README.md
@@ -1,3 +1,5 @@
[![Build Status](https://travis-ci.org/twasyl/jstackfx.svg?branch=master)](https://travis-ci.org/twasyl/jstackfx)

# Context

It is not an easy task to analyse thread dumps as files generated by the `jstack` tool provides raw _text files_.
Expand Down

0 comments on commit f143770

Please sign in to comment.