Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
mjpt777 committed Sep 18, 2018
2 parents ba89a72 + c82a9fe commit e8f1d56
Show file tree
Hide file tree
Showing 2 changed files with 105 additions and 0 deletions.
103 changes: 103 additions & 0 deletions .travis.yml
@@ -0,0 +1,103 @@
language: cpp

sudo: false

matrix:
include:

# clang-4
- env: COMPILER=clang++-4.0
compiler: clang
os: linux
addons:
apt:
packages:
- clang-4.0
- libstdc++-6-dev
- libsparsehash-dev
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-4.0

# clang-5
- env: COMPILER=clang++-5.0
compiler: clang
os: linux
addons:
apt:
packages:
- clang-5.0
- libstdc++-7-dev
- libsparsehash-dev
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-5.0

# clang-6
- env: COMPILER=clang++-6.0
compiler: clang
os: linux
addons:
apt:
packages:
- clang-6.0
- libstdc++-7-dev
- libsparsehash-dev
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-6.0

# gcc-5
- env: COMPILER=g++-5
compiler: gcc
os: linux
addons:
apt:
packages:
- g++-5
- libsparsehash-dev
sources:
- ubuntu-toolchain-r-test

# gcc-6
- env: COMPILER=g++-6
compiler: gcc
os: linux
addons:
apt:
packages:
- g++-6
- libsparsehash-dev
sources:
- ubuntu-toolchain-r-test

# gcc-7
- env: COMPILER=g++-7
compiler: gcc
os: linux
addons:
apt:
packages:
- g++-7
- libsparsehash-dev
sources:
- ubuntu-toolchain-r-test

# gcc-8
- env: COMPILER=g++-8
compiler: gcc
os: linux
addons:
apt:
packages:
- g++-8
- libsparsehash-dev
sources:
- ubuntu-toolchain-r-test

before_script:
- export CXX=$COMPILER
- ./gradlew

script:
- ./cppbuild/cppbuild
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -2,6 +2,8 @@ Simple Binary Encoding (SBE)
============================

[![Javadocs](http://www.javadoc.io/badge/uk.co.real-logic/sbe-tool.svg)](http://www.javadoc.io/doc/uk.co.real-logic/sbe-tool)
[![Build Status](https://travis-ci.org/real-logic/simple-binary-encoding.svg?branch=master)](https://travis-ci.org/real-logic/simple-binary-encoding)
[![GitHub](https://img.shields.io/github/license/real-logic/simple-binary-encoding.svg)](https://github.com/real-logic/simple-binary-encoding/blob/master/LICENSE)

[SBE](https://github.com/FIXTradingCommunity/fix-simple-binary-encoding) is an OSI layer 6 presentation for
encoding and decoding binary application messages for low-latency financial applications. This repository contains
Expand Down

0 comments on commit e8f1d56

Please sign in to comment.