Skip to content

Commit

Permalink
Adding travis file
Browse files Browse the repository at this point in the history
  • Loading branch information
ericmartineau committed Mar 23, 2020
1 parent d420446 commit 783ede1
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .travis.yml
@@ -0,0 +1,23 @@
os:
- linux
sudo: false
addons:
apt:
# Flutter depends on /usr/lib/x86_64-linux-gnu/libstdc++.so.6 version GLIBCXX_3.4.18
sources:
- ubuntu-toolchain-r-test # if we don't specify this, the libstdc++6 we get is the wrong version
packages:
- libstdc++6
- fonts-droid-fallback
before_script:
- git clone https://github.com/flutter/flutter.git -b beta
- export PATH=`pwd`/flutter/bin:`pwd`/flutter/bin/cache/dart-sdk/bin:$PATH
- flutter doctor
- gem install coveralls-lcov
script:
- flutter test --coverage
after_success:
- coveralls-lcov coverage/lcov.info
cache:
directories:
- $HOME/.pub-cache

0 comments on commit 783ede1

Please sign in to comment.