added travis build status

This commit is contained in:
Mindaugas Vinkelis
2017-08-12 10:26:21 +03:00
parent 4ad65f8384
commit 19555528bb
5 changed files with 32 additions and 2 deletions

23
.travis.yml Normal file
View File

@@ -0,0 +1,23 @@
language: cpp
compiler:
  - gcc
  # clang
before_install:
# C++14
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
install:
- sudo apt-get install -qq g++-5 lcov
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-5 90
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 90
before_script:
  - mkdir build
  - cd build
  - cmake ..
script: make && make test

View File

@@ -1,4 +1,10 @@
<a name="2.0.0"></a>
# [2.0.1](https://github.com/fraillt/bitsery/compare/v2.0.0...v2.0.1) (2017-08-12)
### Other notes
* added travis build status
# [2.0.0](https://github.com/fraillt/bitsery/compare/v1.1.1...v2.0.0) (2017-07-25)
### Features
@@ -36,4 +42,4 @@ Serialization functions:
* **text** - for c-array and std::string
* **range** - compresion for primitive types (e.g. int between [255..512] will take up 8bits
* **substitution** - default value from list (e.g. 4d vector, that is most of the time equals to [0,0,0,1] can store only 1bit)
* **boolBit**/**boolByte** - serialize bool, as 1bit or 1byte.
* **boolBit**/**boolByte** - serialize bool, as 1bit or 1byte.

View File

@@ -1,3 +1,4 @@
[![Build Status](https://travis-ci.org/fraillt/bitsery.svg?branch=master)](https://travis-ci.org/fraillt/bitsery)
# Bitsery
Header only C++ binary serialization library.

View File

@@ -26,7 +26,7 @@
#define BITSERY_MAJOR_VERSION 2
#define BITSERY_MINOR_VERSION 0
#define BITSERY_PATCH_VERSION 0
#define BITSERY_PATCH_VERSION 1
#define BITSERY_QUOTE_MACRO(name) #name
#define BITSERY_BUILD_VERSION_STR(major,minor, patch) \