Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Commit

Permalink
add travis
Browse files Browse the repository at this point in the history
  • Loading branch information
goderbauer committed May 12, 2017
1 parent ed5c17c commit 956ca82
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 4 deletions.
63 changes: 63 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
matrix:
include:
- os: linux
language: android
licenses:
- 'android-sdk-preview-license-.+'
- 'android-sdk-license-.+'
- 'google-gdk-license-.+'
android:
components:
- tools
- platform-tools
- build-tools-25.0.3
- android-25
- sys-img-armeabi-v7a-google_apis-25
- extra-android-m2repository
- extra-google-m2repository
- extra-google-android-support
jdk: oraclejdk8
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
before_script:
- wget http://services.gradle.org/distributions/gradle-3.5-bin.zip
- unzip -qq gradle-3.5-bin.zip
- export GRADLE_HOME=$PWD/gradle-3.5
- export PATH=$GRADLE_HOME/bin:$PATH
- gradle -v
- android list targets
- echo no | android create avd --force -n test -t android-25 --abi armeabi-v7a --tag google_apis
- git clone https://github.com/flutter/flutter.git --depth 1
- export PATH=`pwd`/flutter/bin:$PATH
- ./flutter/bin/flutter doctor
script:
- (cd scripts; pub get)
- dart scripts/cli.dart format
- dart scripts/cli.dart test
- dart scripts/cli.dart build --apk
- os: osx
language: generic
osx_image: xcode8.3
before_script:
- pip install six
- brew update
- brew install --HEAD libimobiledevice
- brew install ideviceinstaller
- brew install ios-deploy
- git clone https://github.com/flutter/flutter.git --depth 1
- export PATH=`pwd`/flutter/bin:$PATH
- ./flutter/bin/flutter doctor
script:
- (cd scripts; pub get)
- dart scripts/cli.dart build --ipa

cache:
directories:
- $HOME/.pub-cache
10 changes: 6 additions & 4 deletions scripts/cli.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'dart:async';
import 'dart:io';
import 'dart:convert';
Expand Down Expand Up @@ -147,15 +151,13 @@ class FormatCommand extends Command {
class BuildCommand extends Command {
BuildCommand(this.packagesDir) {
argParser.addFlag('ipa', defaultsTo: Platform.isMacOS);
argParser.addFlag('apk', defaultsTo: !Platform.isMacOS);
argParser.addFlag('apk');
}

final Directory packagesDir;

final name = 'build';
final description =
'Builds all example apps. By default, an IPA is build on Mac and an APK '
'on all other platforms.';
final description = 'Builds all example apps.';

Future run() async {
List<String> failingPackages = <String>[];
Expand Down

0 comments on commit 956ca82

Please sign in to comment.