mirror of
https://github.com/status-im/dotherside.git
synced 2025-02-11 20:16:47 +00:00
18 lines
346 B
YAML
18 lines
346 B
YAML
language: cpp
|
|
compiler: gcc
|
|
sudo: required
|
|
|
|
services:
|
|
- docker
|
|
|
|
before_install:
|
|
- docker pull filcuc/dotherside
|
|
|
|
install:
|
|
- gem install coveralls-lcov
|
|
|
|
script:
|
|
- docker run -v `pwd`:/root/dotherside filcuc/dotherside /bin/bash /root/build.sh
|
|
- sudo chmod -R a+rwx .
|
|
- cd build && coveralls-lcov --repo-token ${COVERALLS_REPO_TOKEN} coverage.info
|