fbmobile/.travis.yml

49 lines
1.3 KiB
YAML
Raw Normal View History

# based on https://gist.github.com/KNawm/9c7c7963e7f772d6d5172fe9da7ce79b
language: generic
2021-05-08 12:30:47 +00:00
dist: bionic
2021-05-08 09:17:53 +00:00
addons:
2021-05-20 23:33:16 +00:00
apt:
packages:
- lib32stdc++6
env:
2021-05-20 23:33:16 +00:00
global:
- FLUTTER_CHANNEL=stable
2021-05-08 09:17:53 +00:00
install:
2021-05-20 23:33:16 +00:00
- git clone https://github.com/flutter/flutter.git -b $FLUTTER_CHANNEL
- export PATH=$(pwd)/flutter/bin:$PATH
- export PATH=$(pwd)/flutter/bin/cache/dart-sdk/bin:$PATH
- flutter doctor -v
- flutter pub get
- flutter pub upgrade
- flutter packages pub run build_runner build --delete-conflicting-outputs
static_analysis: &static_analysis
2021-05-20 23:33:16 +00:00
name: "Static analysis"
script: flutter analyze --no-current-package $TRAVIS_BUILD_DIR/lib
#build: &build
# name: "Build APK"
# language: android
# android:
# components:
# - tools
# - tools
# - platform-tools
# - build-tools-28.0.3
# - android-28
# before_script:
# - export BUILD_NAME=$TRAVIS_TAG
# - export BUILD_NUMBER=$TRAVIS_BUILD_NUMBER
# script:
# - jdk_switcher use openjdk8
# - if [[ $TRAVIS_TAG == "" ]]; then flutter build apk; else flutter build apk --build-name $BUILD_NAME --build-number $BUILD_NUMBER; fi
jobs:
2021-05-20 23:33:16 +00:00
include:
- <<: *static_analysis
# - stage: build
# <<: *build
2021-05-08 09:17:53 +00:00
cache:
2021-05-20 23:33:16 +00:00
directories:
- $HOME/.pub-cache