Skip to content

Commit

Permalink
Create .travis.yml (#10)
Browse files Browse the repository at this point in the history
* Create .travis.yml

* Create README.md

* Update README.md

* #12
  • Loading branch information
shroffk authored Oct 3, 2017
1 parent dd329bc commit d703982
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
sudo: required
language: java
jdk: oraclejdk8

env:
- EPICS_PVA_ADDR_LIST=127.255.255.255

script:
- mvn clean verify

after_failure:
- find ./ -type d -name "surefire-reports" -print0 | xargs -0 -I {} find {} -iname "*.txt" -type f | xargs cat
- find . -type f -name "*.log" -print0 -exec cat {} \;
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# pvAccessJava [![Build Status](https://travis-ci.org/epics-base/pvAccessJava.svg?branch=master)](https://travis-ci.org/epics-base/pvAccessJava)

pvAccess is a high-performance network communication protocol for signal monitoring and scientific data services interconnect. It is designed to support the structured data types of the EPICS Version 4 "shared memory" data exchange system called pvData, for optimized interoperability of control system endpoints. It is a successor of EPICS Channel Access.

0 comments on commit d703982

Please sign in to comment.