mirror of
https://github.com/KjellKod/g3log.git
synced 2024-12-12 18:30:25 +01:00
86473c60e0
* Added "removeSink" method and related functionality to LogWorker API
* Added a new API for plugging in custom Timestamp generator.
* Revert "Added "removeSink" method and related functionality to LogWorker API"
This reverts commit c9cee5d9a0
.
* Dropping shared_ptr<Timestamp> in log messages and using regular vars
* Moving to standard timespec struct from custom Timestamp
* Wiring timespec timestamps with formating routine
* Falling back to clock_gettime
* Reverting g3 API changes
* Optimizing format string generation
* Removed _microseconds from LogMessage
* Implemented sec fractional format key
* Optimization of format string generation
* Adjusting comments
* Refining localtime_formatted by introducing two helper functions
* refactored and simplified code
* fixed up some commented away unit tests
* refactoring message specifics tests to it's own test
* Use gcc 4.9
* C++14 for Linux
* Update .travis.yml
* Update buildAndRunTests.sh
* lower case in `-std=c++14`
* -lrt flag for gcc
* Added support for high precision clock on Linux/gcc (already there now for OSX). Windows is still missing
* intermediate comments
* Clarified for some code readers the mysterious use of assert in an expression that is always true
* refactored + renamed functions and constants. Added unit test for retrieving fractional type
* committing changes previously fixed - finished unit testing for g3::internal::time::GetFractional(..)
* added unit test for fractional to string
* added missing unit tests for localtime_formatted
* fixed? nano / microsec functionality to timer
* test
59 lines
2.0 KiB
YAML
59 lines
2.0 KiB
YAML
language: cpp
|
|
|
|
os:
|
|
- linux
|
|
|
|
compiler:
|
|
- gcc
|
|
#- clang
|
|
|
|
# whitelist
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
|
|
before_install:
|
|
# use http://lint.travis-ci.org/ to validate changes
|
|
# sudo add-apt-repository -y ppa:h-rayflood/llvm;
|
|
# sudo apt-get install --allow-unauthenticated -qq clang-3.4
|
|
|
|
if [ ${TRAVIS_OS_NAME} = 'linux' ];
|
|
then
|
|
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test;
|
|
sudo apt-get update -qq;
|
|
sudo apt-get install python-software-properties;
|
|
sudo apt-get update;
|
|
sudo apt-get install gcc-5 g++-5;
|
|
sudo add-apt-repository --yes ppa:kalakris/cmake;
|
|
sudo apt-get update -qq;
|
|
sudo apt-get install cmake;
|
|
fi
|
|
|
|
install:
|
|
# gcc 5
|
|
- if [ "$CXX" == "g++" ]; then sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 10; fi
|
|
- if [ "$CXX" == "g++" ]; then sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-5 10; fi
|
|
|
|
# clang 3.4
|
|
- if [ "$CXX" == "clang++" ]; then sudo apt-get install --allow-unauthenticated -qq clang-3.4; fi
|
|
- if [ "$CXX" == "clang++" ]; then sudo apt-get install libc++1 libc++abi-dev || true; fi
|
|
|
|
- if [ "$CXX" == "clang++" ]; then export CXXFLAGS="-std=c++0x -stdlib=libc++"; fi
|
|
- if [ "$CXX" == "clang++" ]; then svn co --quiet http://llvm.org/svn/llvm-project/libcxx/trunk libcxx; fi
|
|
|
|
- if [ "$CXX" == "clang++" ]; then cd libcxx/lib && bash buildit; fi
|
|
- if [ "$CXX" == "clang++" ]; then sudo cp ./libc++.so.1.0 /usr/lib/; fi
|
|
- if [ "$CXX" == "clang++" ]; then sudo mkdir /usr/include/c++/v1; fi
|
|
- if [ "$CXX" == "clang++" ]; then cd .. && sudo cp -r include/* /usr/include/c++/v1/; fi
|
|
- if [ "$CXX" == "clang++" ]; then cd /usr/lib && sudo ln -sf libc++.so.1.0 libc++.so; fi
|
|
- if [ "$CXX" == "clang++" ]; then sudo ln -sf libc++.so.1.0 libc++.so.1 && cd $cwd; fi
|
|
# - if [ "${TRAVIS_OS_NAME}" = "osx" ]; then brew update; fi
|
|
- echo $PWD
|
|
- echo $CXX
|
|
- if [ "$CXX" == "clang++" ]; then cd build/KjellKod/g3log || true; fi
|
|
- echo $PWD
|
|
|
|
script: "./scripts/buildAndRunTests.sh"
|
|
|