Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
0b5c1dac
Unverified
Commit
0b5c1dac
authored
Feb 05, 2018
by
xster
Committed by
GitHub
Feb 05, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bundle install before running fastlane on Travis (#14470)
parent
b88ba79c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
travis_script.sh
dev/bots/travis_script.sh
+2
-2
No files found.
dev/bots/travis_script.sh
View file @
0b5c1dac
...
...
@@ -13,7 +13,7 @@ if [ "$SHARD" = "build_and_deploy_gallery" ]; then
echo
"Android Flutter Gallery built"
if
[
"
$TRAVIS_PULL_REQUEST
"
=
"false"
]
;
then
# TODO(xster): add back && [ "$TRAVIS_BRANCH" = "dev" ] after testing
echo
"Deploying to Play Store..."
(
cd
examples/flutter_gallery/android
;
bundle
exec
fastlane deploy_play_store
)
(
cd
examples/flutter_gallery/android
;
bundle
install
&&
bundle
exec
fastlane deploy_play_store
)
else
echo
"Flutter Gallery is only deployed to the Play Store on merged dev branch commits"
fi
...
...
@@ -23,7 +23,7 @@ if [ "$SHARD" = "build_and_deploy_gallery" ]; then
echo
"iOS Flutter Gallery built"
if
[
"
$TRAVIS_PULL_REQUEST
"
=
"false"
]
;
then
# TODO(xster): add back && [ "$TRAVIS_BRANCH" = "dev" ] after testing
echo
"Re-building with distribution profile and deploying to TestFlight..."
(
cd
examples/flutter_gallery/ios
;
bundle
exec
fastlane build_and_deploy_testflight
)
(
cd
examples/flutter_gallery/ios
;
bundle
install
&&
bundle
exec
fastlane build_and_deploy_testflight
)
else
echo
"Flutter Gallery is only deployed to the TestFlight on merged dev branch commits"
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment