travis script
This commit is contained in:
parent
de9a01803c
commit
cb5a727a4a
23
.travis.yml
Normal file
23
.travis.yml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
language: cpp
|
||||||
|
compiler: gcc
|
||||||
|
dist: trusty
|
||||||
|
|
||||||
|
before_install:
|
||||||
|
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
|
||||||
|
- sudo apt-get update -qq
|
||||||
|
|
||||||
|
install:
|
||||||
|
- sudo apt-get install -qq g++-8
|
||||||
|
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 90
|
||||||
|
- sudo apt-get install -qq cppcheck
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- cd ${TRAVIS_BUILD_DIR}
|
||||||
|
- cmake -H. -BBuild -DCMAKE_BUILD_TYPE=Release -Wdev
|
||||||
|
- cd Build
|
||||||
|
|
||||||
|
script:
|
||||||
|
- make -j 2
|
||||||
|
- ctest -V -j 2 -C Release
|
||||||
|
- cppcheck --quiet --error-exitcode=1 .
|
||||||
|
|
||||||
@ -1,7 +1,8 @@
|
|||||||
# stduuid
|
# stduuid
|
||||||
A C++ cross-platform single-header library implementation **for universally unique identifiers**, simply know as either UUID or GUID (mostly on Windows). A UUID is a 128-bit number used to uniquely identify information in computer systems, such as database table keys, COM interfaces, classes and type libraries, and many others.
|
A C++ cross-platform single-header library implementation **for universally unique identifiers**, simply know as either UUID or GUID (mostly on Windows). A UUID is a 128-bit number used to uniquely identify information in computer systems, such as database table keys, COM interfaces, classes and type libraries, and many others.
|
||||||
|
|
||||||
[](https://ci.appveyor.com/project/mariusbancila/stduuid)
|
[](https://travis-ci.org/mariusbancila/stduuid)
|
||||||
|
[](https://ci.appveyor.com/project/mariusbancila/stduuid)
|
||||||
|
|
||||||
For information about UUID/GUIDs see:
|
For information about UUID/GUIDs see:
|
||||||
* [Universally unique identifier](https://en.wikipedia.org/wiki/Universally_unique_identifier)
|
* [Universally unique identifier](https://en.wikipedia.org/wiki/Universally_unique_identifier)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user