File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed
Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change 1515
1616before_all do |lane |
1717 # Skip these checks/steps for test lane (not needed for testing)
18- unless lane == :test_without_building
19- # Check that the env files exist
20- unless is_ci || File . file? ( USER_ENV_FILE_PATH )
21- UI . user_error! ( "~/.wcios-env.default not found: Please copy env/user.env-example to #{ USER_ENV_FILE_PATH } and fill in the values" )
22- end
23- unless File . file? ( PROJECT_ENV_FILE_PATH )
24- UI . user_error! ( "project.env not found: Make sure your configuration is up to date with `rake dependencies`" )
25- end
18+ next if lane == :test_without_building
2619
27- # This allows code signing to work on CircleCI
28- # It is skipped if this isn't running on CI
29- # See https://circleci.com/docs/2.0/ios-codesigning/
30- setup_circle_ci
20+ # Check that the env files exist
21+ unless is_ci || File . file? ( USER_ENV_FILE_PATH )
22+ UI . user_error! ( "~/.wcios-env.default not found: Please copy env/user.env-example to #{ USER_ENV_FILE_PATH } and fill in the values" )
3123 end
24+ unless File . file? ( PROJECT_ENV_FILE_PATH )
25+ UI . user_error! ( "project.env not found: Make sure your configuration is up to date with `rake dependencies`" )
26+ end
27+
28+ # This allows code signing to work on CircleCI
29+ # It is skipped if this isn't running on CI
30+ # See https://circleci.com/docs/2.0/ios-codesigning/
31+ setup_circle_ci
3232end
3333
3434platform :ios do
You can’t perform that action at this time.
0 commit comments