Slide 1

Slide 1 text

How we use fastlane at Wantedly JIRO NAGASHIMAʗ@hedjirog

Slide 2

Slide 2 text

Jiro Nagashima @hedjirog wantedly.com/users/3153

Slide 3

Slide 3 text

γΰτͰίίϩΦυϧ

Slide 4

Slide 4 text

γΰτͰίίϩΦυϧ

Slide 5

Slide 5 text

γΰτͰίίϩΦυϧ

Slide 6

Slide 6 text

γΰτͰίίϩΦυϧ 2 Apps

Slide 7

Slide 7 text

γΰτͰίίϩΦυϧ 2 Apps 1 Project (Targets)

Slide 8

Slide 8 text

γΰτͰίίϩΦυϧ • It's a lot of trouble… • Beta Distribution • Submitting to the App Store • Integration Tests 2 Apps (Targets)

Slide 9

Slide 9 text

γΰτͰίίϩΦυϧ

Slide 10

Slide 10 text

γΰτͰίίϩΦυϧ • Use fastlane to 1. Distribute beta buils 2. Submit apps to the App Store 3. Take screenshots fastlane

Slide 11

Slide 11 text

γΰτͰίίϩΦυϧ 1. Beta Distribution

Slide 12

Slide 12 text

Build Distribution Download Import

Slide 13

Slide 13 text

Build Distribution Download Import

Slide 14

Slide 14 text

Workflow

Slide 15

Slide 15 text

Workflow Push

Slide 16

Slide 16 text

γΰτͰίίϩΦυϧ • Tools • Fabric (Crashlytics Beta) • fastlane • CircleCI Beta Distribution

Slide 17

Slide 17 text

γΰτͰίίϩΦυϧ • Tools • Fabric (Crashlytics Beta) • fastlane • CircleCI Beta Distribution

Slide 18

Slide 18 text

γΰτͰίίϩΦυϧ Beta Distribution fastlane / Fastfile lane :beta do # Import certificates cert_dir = "./fastlane/certificates" import_certificates( cert_paths: [ File.join(cert_dir, "apple.cer") ], key_paths: [ File.join(cert_dir, "development.p12"), File.join(cert_dir, "distribution.p12") ] ) # Download provisioning profiles sigh( app_identifier: "com.wantedly.app-qa", adhoc: true ) # Build ipa( scheme: "app", configuration: "QA" ) # Push to Crashlytics crashlytics( crashlytics_path: "./Pods/Fabric/Crashlytics.framework", groups: "Developers" ) end Build Distribution Download Import

Slide 19

Slide 19 text

γΰτͰίίϩΦυϧ Beta Distribution fastlane / Fastfile lane :beta do # Import certificates cert_dir = "./fastlane/certificates" import_certificates( cert_paths: [ File.join(cert_dir, "apple.cer") ], key_paths: [ File.join(cert_dir, "development.p12"), File.join(cert_dir, "distribution.p12") ] ) # Download provisioning profiles sigh( app_identifier: "com.wantedly.app-qa", adhoc: true ) # Build ipa( scheme: "app", configuration: "QA" ) # Push to Crashlytics crashlytics( crashlytics_path: "./Pods/Fabric/Crashlytics.framework", groups: "Developers" ) end Build Distribution Download Import

Slide 20

Slide 20 text

γΰτͰίίϩΦυϧ Beta Distribution fastlane / Fastfile lane :beta do # Import certificates cert_dir = "./fastlane/certificates" import_certificates( cert_paths: [ File.join(cert_dir, "apple.cer") ], key_paths: [ File.join(cert_dir, "development.p12"), File.join(cert_dir, "distribution.p12") ] ) # Download provisioning profiles sigh( app_identifier: "com.wantedly.app-qa", adhoc: true ) # Build ipa( scheme: "app", configuration: "QA" ) # Push to Crashlytics crashlytics( crashlytics_path: "./Pods/Fabric/Crashlytics.framework", groups: "Developers" ) end Build Distribution Download Import

Slide 21

Slide 21 text

γΰτͰίίϩΦυϧ Beta Distribution fastlane / Fastfile lane :beta do # Import certificates cert_dir = "./fastlane/certificates" import_certificates( cert_paths: [ File.join(cert_dir, "apple.cer") ], key_paths: [ File.join(cert_dir, "development.p12"), File.join(cert_dir, "distribution.p12") ] ) # Download provisioning profiles sigh( app_identifier: "com.wantedly.app-qa", adhoc: true ) # Build ipa( scheme: "app", configuration: "QA" ) # Push to Crashlytics crashlytics( crashlytics_path: "./Pods/Fabric/Crashlytics.framework", groups: "Developers" ) end Build Distribution Download Import

Slide 22

Slide 22 text

γΰτͰίίϩΦυϧ Beta Distribution fastlane / Fastfile lane :beta do # Import certificates cert_dir = "./fastlane/certificates" import_certificates( cert_paths: [ File.join(cert_dir, "apple.cer") ], key_paths: [ File.join(cert_dir, "development.p12"), File.join(cert_dir, "distribution.p12") ] ) # Download provisioning profiles sigh( app_identifier: "com.wantedly.app-qa", adhoc: true ) # Build ipa( scheme: "app", configuration: "QA" ) # Push to Crashlytics crashlytics( crashlytics_path: "./Pods/Fabric/Crashlytics.framework", groups: "Developers" ) end Build Distribution Download Import

Slide 23

Slide 23 text

γΰτͰίίϩΦυϧ Beta Distribution fastlane / Fastfile - Built-in Action lane :beta do # Import certificates cert_dir = "./fastlane/certificates" import_certificates( cert_paths: [ File.join(cert_dir, "apple.cer") ], key_paths: [ File.join(cert_dir, "development.p12"), File.join(cert_dir, "distribution.p12") ] ) # Download provisioning profiles sigh( app_identifier: "com.wantedly.app-qa", adhoc: true ) # Build ipa( scheme: "app", configuration: "QA" ) # Push to Crashlytics crashlytics( crashlytics_path: "./Pods/Fabric/Crashlytics.framework", groups: "Developers" ) end Build Distribution Download Import Action Action Action

Slide 24

Slide 24 text

γΰτͰίίϩΦυϧ Beta Distribution fastlane / Fastfile - Custom Action lane :beta do # Import certificates cert_dir = "./fastlane/certificates" import_certificates( cert_paths: [ File.join(cert_dir, "apple.cer") ], key_paths: [ File.join(cert_dir, "development.p12"), File.join(cert_dir, "distribution.p12") ] ) # Download provisioning profiles sigh( app_identifier: "com.wantedly.app-qa", adhoc: true ) # Build ipa( scheme: "app", configuration: "QA" ) # Push to Crashlytics crashlytics( crashlytics_path: "./Pods/Fabric/Crashlytics.framework", groups: "Developers" ) end Build Distribution Download Import Custom Action

Slide 25

Slide 25 text

γΰτͰίίϩΦυϧ Beta Distribution fastlane / Fastfile - Custom Action class ImportCertificatesAction < Action def self.run(params) cert_paths = params[:cert_paths] key_paths = params[:key_paths] keychain = "ios-build.keychain" password = "ios-build" timeout_seconds = 3600 begin sh "security create-keychain -p #{password} #{keychain}" sh "security default-keychain -s #{keychain}" sh "security list-keychains -s #{keychain}" sh "security unlock-keychain -p #{password} #{keychain}" sh "security set-keychain-settings -t #{timeout_seconds} -l #{keychain}" cert_paths.each do |cert_path| sh "security import #{cert_path} -k #{keychain} -T /usr/bin/codesign" end key_paths.each do |key_path| # Don't use `sh` so as not to output a password. `security import #{key_path} -k #{keychain} -P #{ENV['P12_PASSWORD']} -T /usr/bin/codesign` raise "Password is not correct" unless $?.to_i == 0 end Helper.log.info 'Successfully import certificates .'.green rescue => ex Helper.log.error 'Failed to import certificates'.red raise ex end end …

Slide 26

Slide 26 text

γΰτͰίίϩΦυϧ • Tools • Fabric (Crashlytics Beta) • fastlane • CircleCI Beta Distribution

Slide 27

Slide 27 text

γΰτͰίίϩΦυϧ Beta Distribution CircleCI / circle.yml deployment: beta: branch: master commands: - bundle exec fastlane beta_app1 - bundle exec fastlane beta_app2 • Execute workflows with fastlane

Slide 28

Slide 28 text

γΰτͰίίϩΦυϧ Beta Distribution CircleCI / circle.yml deployment: beta: branch: master commands: - bundle exec fastlane beta_app1 - bundle exec fastlane beta_app2 • Execute workflows with fastlane

Slide 29

Slide 29 text

γΰτͰίίϩΦυϧ 2. Submitting Apps

Slide 30

Slide 30 text

γΰτͰίίϩΦυϧ Submitting Apps Fastfile lane :deploy do ensure_git_status_clean increment_build_number commit_version_bump schemes = ["app1", "app2"] schemes.each do |scheme| ipa( scheme: scheme, configuration: "Release" ) deliver( deliver_file_path: "./fastlane/#{scheme}" ) end end

Slide 31

Slide 31 text

γΰτͰίίϩΦυϧ Submitting Apps Fastfile lane :deploy do ensure_git_status_clean increment_build_number commit_version_bump schemes = ["app1", "app2"] schemes.each do |scheme| ipa( scheme: scheme, configuration: "Release" ) deliver( deliver_file_path: "./fastlane/#{scheme}" ) end end • Specify Deliverfile for each app

Slide 32

Slide 32 text

γΰτͰίίϩΦυϧ Submitting Apps Contents of Directories $ tree fastlane fastlane ├── Fastfile ├── app1 │ ├── Deliverfile │ … └── app2 ├── Deliverfile …

Slide 33

Slide 33 text

γΰτͰίίϩΦυϧ Submitting Apps Contents of Directories $ tree fastlane fastlane ├── Fastfile ├── app1 │ ├── Deliverfile │ … └── app2 ├── Deliverfile … Multiple Deliverfiles

Slide 34

Slide 34 text

γΰτͰίίϩΦυϧ Submitting Apps Contents of Directories $ tree fastlane fastlane ├── Fastfile └── app1 ├── Deliverfile └── metadata └── ja-JP ├── description.txt ├── keywords.txt ├── privacy_url.txt ├── software_url.txt ├── support_url.txt ├── title.txt └── version_whats_new.txt

Slide 35

Slide 35 text

γΰτͰίίϩΦυϧ Submitting Apps Commands $ bundle exec fastlane deploy • That’s all!

Slide 36

Slide 36 text

γΰτͰίίϩΦυϧ 3. Taking Screenshots

Slide 37

Slide 37 text

No content

Slide 38

Slide 38 text

No content

Slide 39

Slide 39 text

γΰτͰίίϩΦυϧ Taking Screenshots iPhone 5 iPhone 6 iPhone 6 Plus iPad Air 2 Apps

Slide 40

Slide 40 text

γΰτͰίίϩΦυϧ Taking Screenshots Fastfile lane :snapshot do schemes = ["app1", "app2"] schemes.each do |scheme| snapshot( snapshot_file_path: "./fastlane/#{scheme}" ) end end

Slide 41

Slide 41 text

γΰτͰίίϩΦυϧ Taking Screenshots Fastfile lane :snapshot do schemes = ["app1", "app2"] schemes.each do |scheme| snapshot( snapshot_file_path: "./fastlane/#{scheme}" ) end end • Specify Snapfile for each app

Slide 42

Slide 42 text

γΰτͰίίϩΦυϧ Taking Screenshots Contents of Directories $ tree fastlane fastlane ├── Fastfile ├── app1 │ ├── Snapfile │ … └── app2 ├── Snapfile …

Slide 43

Slide 43 text

γΰτͰίίϩΦυϧ Taking Screenshots Contents of Directories $ tree fastlane fastlane ├── Fastfile ├── app1 │ ├── Snapfile │ … └── app2 ├── Snapfile … Multiple Snapfile

Slide 44

Slide 44 text

γΰτͰίίϩΦυϧ Taking Screenshots Contents of Directories $ tree fastlane fastlane ├── Fastfile └── app1 ├── Snapfile └── js ├── helpers │ └── capture.js ├── screens │ ├── activitiesScreen.js │ ├── featureScreen.js │ ├── messagesScreen.js │ ├── profileScreen.js │ ├── projectScreen.js │ ├── projectsScreen.js │ ├── screen.js │ ├── settingsScreen.js │ └── welcomeScreen.js ├── screens.js └── snapshot.js

Slide 45

Slide 45 text

γΰτͰίίϩΦυϧ Taking Screenshots Commands $ bundle exec fastlane snapshot • That’s all!

Slide 46

Slide 46 text

γΰτͰίίϩΦυϧ • Use fastlane to 1. Distribute beta buils 2. Submit apps to the App Store 3. Take screenshots

Slide 47

Slide 47 text

No content

Slide 48

Slide 48 text

No content

Slide 49

Slide 49 text

iOS, Android, Rails Engineer WE’RE HIRING!!!