12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- language: dart
-
- dart:
- - stable
-
- os:
- - linux
-
- sudo: false
-
- addons:
- apt:
- sources:
- - ubuntu-toolchain-r-test
- packages:
- - libstdc++6
- - fonts-droid
-
- cache:
- directories:
- - $HOME/.pub-cache
-
- #env:
- # - FLUTTER_VERSION=stable
- # - FLUTTER_VERSION=master
-
- matrix:
- include:
- - name: "Master build"
- if: branch = flutter-master
- env: FLUTTER_VERSION=master
- - name: "Stable build"
- if: branch != flutter-master
- env: FLUTTER_VERSION=stable
-
- before_script:
- - pwd
- - git clone https://github.com/flutter/flutter.git -b $FLUTTER_VERSION
- - ./flutter/bin/flutter doctor
-
- script:
- - pwd
- - ./tool/travis.sh notus
- - ./tool/travis.sh zefyr
- - bash <(curl -s https://codecov.io/bash)
|