Skip to content

Instantly share code, notes, and snippets.

@BillyNate
Last active June 2, 2021 18:36
Show Gist options
  • Save BillyNate/f0d58341d8a30d54f1ca7f4e78cb1032 to your computer and use it in GitHub Desktop.
Save BillyNate/f0d58341d8a30d54f1ca7f4e78cb1032 to your computer and use it in GitHub Desktop.
Simple Flutter iOS app testing using Travis and Appatize
os: osx
name: iOS
osx_image: xcode12.5
install:
- git clone https://github.com/flutter/flutter.git -b stable
- export PATH=$PWD/flutter/bin:$PWD/flutter/bin/cache/dart-sdk/bin/:$PATH
- flutter doctor
- gem install fastlane
script:
- flutter build ios --build-number $TRAVIS_BUILD_NUMBER --debug --no-codesign
- pushd ios
- fastlane run build_and_upload_to_appetize api_token:"$APPETIZE_API_TOKEN" scheme:"Runner"
- popd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment