Files
dungeon-paper-app/.travis.yml
2020-06-09 20:09:57 +03:00

22 lines
545 B
YAML

os:
- linux
sudo: false
addons:
apt:
# Flutter depends on /usr/lib/x86_64-linux-gnu/libstdc++.so.6 version GLIBCXX_3.4.18
sources:
# if we don't specify this, the libstdc++6 we get is the wrong version
- ubuntu-toolchain-r-test
packages:
- libstdc++6
- fonts-droid-fallback
before_script:
- git clone https://github.com/flutter/flutter.git -b beta
- ./flutter/bin/flutter doctor
- echo '{}' > ./assets/secrets.json
script:
- ./flutter/bin/flutter test
cache:
directories:
- $HOME/.pub-cache