Last active
June 2, 2021 18:36
-
-
Save BillyNate/f0d58341d8a30d54f1ca7f4e78cb1032 to your computer and use it in GitHub Desktop.
Simple Flutter iOS app testing using Travis and Appatize
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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