Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
liberty
tunnel
liberty-tunnel-ios
Commits
7e4dc516
Commit
7e4dc516
authored
Aug 31, 2018
by
Jose Blaya
Browse files
New lane to build beta IPA in a distribution folder
parent
74006c1f
Changes
4
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
7e4dc516
...
...
@@ -12,5 +12,6 @@ fastlane/test_output
fastlane/review_information/demo_*
build
dist
apple_dist
Preview.html
Gemfile.lock
.gitlab-ci.yml
View file @
7e4dc516
...
...
@@ -104,7 +104,7 @@ beta_manual_archive:
GYM_EXPORT_METHOD
:
"
app-store"
script
:
#- bundle exec fastlane clean_openssl
-
bundle exec fastlane create_archive
-
bundle exec fastlane create_
beta_
archive
artifacts
:
paths
:
-
"
$STAGE_TESTFLIGHT_ARTIFACTS_PATH/$STAGE_ARCHIVE_NAME.*"
...
...
fastlane/Fastfile
View file @
7e4dc516
...
...
@@ -24,6 +24,7 @@ platform :ios do
import
"ci/clean_openssl.rb"
import
"ci/unit_test.rb"
import
"ci/create_archive.rb"
import
"ci/create_beta_archive.rb"
import
"ci/qa_deploy.rb"
import
"ci/qa_notify.rb"
import
"ci/beta_deploy.rb"
...
...
fastlane/ci/create_beta_archive.rb
0 → 100644
View file @
7e4dc516
desc
"Archive a new build for Beta testing"
lane
:create_beta_archive
do
#ensure_git_status_clean
sh
"cd .. && rm -rf Pods/SideMenu"
cocoapods
(
try_repo_update_on_error:
true
)
sh
"cd .. && git apply ci/0001-Close-menu-on-rotation.patch"
get_build_number
increment_build_number
(
build_number:
deterministic_build_number
)
match
gym
(
output_directory:
"apple_dist"
)
print_ipa_metadata
(
prefix:
"Archived"
)
end
Write
Preview
Supports
Markdown
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