mirror of
https://github.com/fraillt/bitsery.git
synced 2026-09-17 15:54:30 +00:00
added travis build status
This commit is contained in:
23
.travis.yml
Normal file
23
.travis.yml
Normal 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
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
[](https://travis-ci.org/fraillt/bitsery)
|
||||
# Bitsery
|
||||
|
||||
Header only C++ binary serialization library.
|
||||
|
||||
@@ -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) \
|
||||
|
||||
Reference in New Issue
Block a user