Skip to content
This repository has been archived by the owner on Aug 11, 2020. It is now read-only.

Commit

Permalink
Use GCC 7 in Travis build (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
awegrzyn authored Jul 30, 2019
1 parent b5905b1 commit b12ecc9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ matrix:
- ubuntu-toolchain-r-test
packages:
- lcov
- gcc-8
- g++-8
- gcc-7
- g++-7
- cmake
- libboost-system1.58-dev
- libboost-test1.58-dev
Expand All @@ -21,7 +21,7 @@ before_script:
- cd $TRAVIS_BUILD_DIR; mkdir build; cd build
script:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then cmake ..;
else cmake .. -DCMAKE_C_COMPILER=/usr/bin/gcc-8 -DCMAKE_CXX_COMPILER=/usr/bin/g++-8 -DCMAKE_BUILD_TYPE=Debug; fi;
else cmake .. -DCMAKE_C_COMPILER=/usr/bin/gcc-7 -DCMAKE_CXX_COMPILER=/usr/bin/g++-7 -DCMAKE_BUILD_TYPE=Debug; fi;
- make -j
- make test
after_success:
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# influxdb-cxx

[![Build Status](https://travis-ci.com/awegrzyn/influxdb-cxx.svg?branch=master)](https://travis-ci.com/awegrzyn/influxdb-cxx)
[![codecov](https://codecov.io/gh/awegrzyn/influxdb-cxx/branch/master/graph/badge.svg)](https://codecov.io/gh/awegrzyn/influxdb-cxx)


InfluxDB C++ client library
- Writing data
Expand Down

0 comments on commit b12ecc9

Please sign in to comment.