From 79105ab3d320ef62fafbe4cb27a03a4b53b03e05 Mon Sep 17 00:00:00 2001 From: Joshua Scott Date: Sat, 20 Oct 2018 19:32:21 +0100 Subject: [PATCH] travis: export COVERALLS_REPO_TOKEN --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3925a6a..2e7a20e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,11 +21,14 @@ script: # Check versions of gcc, g++ and cmake - gcc-6 -v && g++-6 -v && cmake --version + # Configure coveralls + - export COVERALLS_SERVICE_NAME=travis-ci + - export COVERALLS_REPO_TOKEN=AVdmBeqZ1of0v2ST0FfKy7cOFYeildj6C + # Build - rm -rf build/ - mkdir build - cd build - - export COVERALLS_SERVICE_NAME=travis-ci - cmake -DCOVERALLS=ON -DCMAKE_BUILD_TYPE=Debug .. - make