From da1d6ca66e668ab2a929b6bad9fee13b1049667d Mon Sep 17 00:00:00 2001 From: adamrushy Date: Tue, 9 Dec 2025 20:30:10 +0000 Subject: [PATCH 01/12] Bump Fastlane Version --- Gemfile | 2 +- Gemfile.lock | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index e8d93d6..fd9f410 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,3 @@ source "https://rubygems.org" -gem 'fastlane', '2.228.0' +gem 'fastlane', '2.229.1' diff --git a/Gemfile.lock b/Gemfile.lock index 3b6a1be..c9a45d1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -66,7 +66,7 @@ GEM faraday_middleware (1.2.0) faraday (~> 1.0) fastimage (2.2.6) - fastlane (2.206.2) + fastlane (2.229.1) CFPropertyList (>= 2.3, < 4.0.0) addressable (>= 2.8, < 3.0.0) artifactory (~> 3.0) @@ -212,7 +212,7 @@ PLATFORMS x86_64-darwin-21 DEPENDENCIES - fastlane (= 2.206.2) + fastlane (= 2.229.1) BUNDLED WITH 2.2.33 From bd804c7c8e58ecf486172d34f70f989ad5b72bfa Mon Sep 17 00:00:00 2001 From: adamrushy Date: Tue, 9 Dec 2025 20:32:10 +0000 Subject: [PATCH 02/12] Specific Bundler Version --- .github/workflows/build.yml | 7 +++++++ Gemfile.lock | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3fa731f..79b9149 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,14 @@ jobs: - name: Checkout iOS Repository uses: actions/checkout@v2 + - name: Setup Ruby and install bundler + uses: ruby/setup-ruby@v1 + with: + ruby-version: '3.3' + bundler-cache: true + - name: Build iOS Project via Fastlane uses: maierj/fastlane-action@v3.1.0 with: lane: build_debug + skip-bundle-update: true diff --git a/Gemfile.lock b/Gemfile.lock index c9a45d1..2735b1d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -215,4 +215,4 @@ DEPENDENCIES fastlane (= 2.229.1) BUNDLED WITH - 2.2.33 + 2.5.23 From ed2309a6f10e7f8b1e280e42202602e55c4ccb64 Mon Sep 17 00:00:00 2001 From: adamrushy Date: Tue, 9 Dec 2025 20:34:31 +0000 Subject: [PATCH 03/12] Adding Darwin platforms --- Gemfile.lock | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Gemfile.lock b/Gemfile.lock index 2735b1d..1328373 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -209,7 +209,14 @@ GEM xcpretty (~> 0.2, >= 0.0.7) PLATFORMS + arm64-darwin-21 + arm64-darwin-22 + arm64-darwin-23 + x86_64-darwin-19 + x86_64-darwin-20 x86_64-darwin-21 + x86_64-darwin-22 + x86_64-darwin-23 DEPENDENCIES fastlane (= 2.229.1) From 37a1f033dc20cb8215c8c82568c726de8ab88e41 Mon Sep 17 00:00:00 2001 From: adamrushy Date: Tue, 9 Dec 2025 20:36:54 +0000 Subject: [PATCH 04/12] Revert fastlane version --- Gemfile | 2 +- Gemfile.lock | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index fd9f410..915c880 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,3 @@ source "https://rubygems.org" -gem 'fastlane', '2.229.1' +gem 'fastlane', '2.206.2' diff --git a/Gemfile.lock b/Gemfile.lock index 1328373..a34ab2a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -66,7 +66,7 @@ GEM faraday_middleware (1.2.0) faraday (~> 1.0) fastimage (2.2.6) - fastlane (2.229.1) + fastlane (2.206.2) CFPropertyList (>= 2.3, < 4.0.0) addressable (>= 2.8, < 3.0.0) artifactory (~> 3.0) @@ -219,7 +219,7 @@ PLATFORMS x86_64-darwin-23 DEPENDENCIES - fastlane (= 2.229.1) + fastlane (= 2.206.2) BUNDLED WITH 2.5.23 From 5ef1cfed1946aa50b0e0e4ffa75af6192aa87809 Mon Sep 17 00:00:00 2001 From: adamrushy Date: Tue, 9 Dec 2025 20:40:31 +0000 Subject: [PATCH 05/12] Terminal size workaround --- .github/workflows/build.yml | 2 ++ fastlane/Fastfile | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 79b9149..e97060c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,6 +8,8 @@ on: env: DEVELOPER_DIR: /Applications/Xcode_26.0.1.app/Contents/Developer + FASTLANE_SKIP_UPDATE_CHECK: true + CI: true jobs: build: diff --git a/fastlane/Fastfile b/fastlane/Fastfile index b7c42b0..c19b86b 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -1,5 +1,11 @@ default_platform(:ios) +# Workaround for CI terminal size detection issue +if ENV['CI'] + ENV['FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT'] = '180' + ENV['FASTLANE_XCODE_LIST_TIMEOUT'] = '180' +end + platform :ios do desc "Build SwiftLeeds scheme" lane :build do |options| From ccf98756e65c71677b98ddb2824fdd3b9dd12cea Mon Sep 17 00:00:00 2001 From: adamrushy Date: Tue, 9 Dec 2025 20:43:03 +0000 Subject: [PATCH 06/12] Attempting workaround: --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e97060c..3b65b6e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,6 +10,9 @@ env: DEVELOPER_DIR: /Applications/Xcode_26.0.1.app/Contents/Developer FASTLANE_SKIP_UPDATE_CHECK: true CI: true + TERM: dumb + FASTLANE_DISABLE_COLORS: true + NO_COLOR: true jobs: build: @@ -22,11 +25,8 @@ jobs: - name: Setup Ruby and install bundler uses: ruby/setup-ruby@v1 with: - ruby-version: '3.3' + ruby-version: '3.0' bundler-cache: true - name: Build iOS Project via Fastlane - uses: maierj/fastlane-action@v3.1.0 - with: - lane: build_debug - skip-bundle-update: true + run: bundle exec fastlane build_debug From 8319f3ba6ab62f3aaa6c7b25c6f817de01a0d09d Mon Sep 17 00:00:00 2001 From: adamrushy Date: Tue, 9 Dec 2025 20:45:45 +0000 Subject: [PATCH 07/12] Bump Fastlane --- Gemfile | 2 +- Gemfile.lock | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Gemfile b/Gemfile index 915c880..262d933 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,3 @@ source "https://rubygems.org" -gem 'fastlane', '2.206.2' +gem 'fastlane', '2.225.0' diff --git a/Gemfile.lock b/Gemfile.lock index a34ab2a..c573879 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -66,7 +66,7 @@ GEM faraday_middleware (1.2.0) faraday (~> 1.0) fastimage (2.2.6) - fastlane (2.206.2) + fastlane (2.225.0) CFPropertyList (>= 2.3, < 4.0.0) addressable (>= 2.8, < 3.0.0) artifactory (~> 3.0) @@ -196,7 +196,7 @@ GEM unicode-display_width (1.8.0) webrick (1.7.0) word_wrap (1.0.0) - xcodeproj (1.22.0) + xcodeproj (1.25.0) CFPropertyList (>= 2.3.3, < 4.0) atomos (~> 0.1.3) claide (>= 1.0.2, < 2.0) @@ -219,7 +219,7 @@ PLATFORMS x86_64-darwin-23 DEPENDENCIES - fastlane (= 2.206.2) + fastlane (= 2.225.0) BUNDLED WITH 2.5.23 From e86172e815cbdc5d5940535c4c965151e82d57f3 Mon Sep 17 00:00:00 2001 From: adamrushy Date: Tue, 9 Dec 2025 20:47:21 +0000 Subject: [PATCH 08/12] Bump rex --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index c573879..1c32280 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -168,7 +168,7 @@ GEM trailblazer-option (>= 0.1.1, < 0.2.0) uber (< 0.2.0) retriable (3.1.2) - rexml (3.2.5) + rexml (3.3.2) rouge (2.0.7) ruby2_keywords (0.0.5) rubyzip (2.3.2) From aaba3a46b73b0f23192705488d314a747e45d89c Mon Sep 17 00:00:00 2001 From: adamrushy Date: Tue, 9 Dec 2025 20:48:53 +0000 Subject: [PATCH 09/12] Update lock file --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 1c32280..2a368a7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -202,7 +202,7 @@ GEM claide (>= 1.0.2, < 2.0) colored2 (~> 3.1) nanaimo (~> 0.3.0) - rexml (~> 3.2.4) + rexml (>= 3.3.2, < 4.0) xcpretty (0.3.0) rouge (~> 2.0.7) xcpretty-travis-formatter (1.0.1) From 5b666fb2400de8c965884f4957008f7ccdc7a9ae Mon Sep 17 00:00:00 2001 From: adamrushy Date: Tue, 9 Dec 2025 20:55:58 +0000 Subject: [PATCH 10/12] Let CI handle bundle --- .github/workflows/build.yml | 7 +- Gemfile | 2 +- Gemfile.lock | 225 ------------------------------------ 3 files changed, 7 insertions(+), 227 deletions(-) delete mode 100644 Gemfile.lock diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3b65b6e..1be8f4c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,7 +26,12 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: '3.0' - bundler-cache: true + bundler-cache: false + + - name: Install dependencies + run: | + gem install bundler + bundle install - name: Build iOS Project via Fastlane run: bundle exec fastlane build_debug diff --git a/Gemfile b/Gemfile index 262d933..c77b7dd 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,3 @@ source "https://rubygems.org" -gem 'fastlane', '2.225.0' +gem 'fastlane' diff --git a/Gemfile.lock b/Gemfile.lock deleted file mode 100644 index 2a368a7..0000000 --- a/Gemfile.lock +++ /dev/null @@ -1,225 +0,0 @@ -GEM - remote: https://rubygems.org/ - specs: - CFPropertyList (3.0.5) - rexml - addressable (2.8.0) - public_suffix (>= 2.0.2, < 5.0) - artifactory (3.0.15) - atomos (0.1.3) - aws-eventstream (1.2.0) - aws-partitions (1.601.0) - aws-sdk-core (3.131.2) - aws-eventstream (~> 1, >= 1.0.2) - aws-partitions (~> 1, >= 1.525.0) - aws-sigv4 (~> 1.1) - jmespath (~> 1, >= 1.6.1) - aws-sdk-kms (1.57.0) - aws-sdk-core (~> 3, >= 3.127.0) - aws-sigv4 (~> 1.1) - aws-sdk-s3 (1.114.0) - aws-sdk-core (~> 3, >= 3.127.0) - aws-sdk-kms (~> 1) - aws-sigv4 (~> 1.4) - aws-sigv4 (1.5.0) - aws-eventstream (~> 1, >= 1.0.2) - babosa (1.0.4) - claide (1.1.0) - colored (1.2) - colored2 (3.1.2) - commander (4.6.0) - highline (~> 2.0.0) - declarative (0.0.20) - digest-crc (0.6.4) - rake (>= 12.0.0, < 14.0.0) - domain_name (0.5.20190701) - unf (>= 0.0.5, < 1.0.0) - dotenv (2.7.6) - emoji_regex (3.2.3) - excon (0.92.3) - faraday (1.10.0) - faraday-em_http (~> 1.0) - faraday-em_synchrony (~> 1.0) - faraday-excon (~> 1.1) - faraday-httpclient (~> 1.0) - faraday-multipart (~> 1.0) - faraday-net_http (~> 1.0) - faraday-net_http_persistent (~> 1.0) - faraday-patron (~> 1.0) - faraday-rack (~> 1.0) - faraday-retry (~> 1.0) - ruby2_keywords (>= 0.0.4) - faraday-cookie_jar (0.0.7) - faraday (>= 0.8.0) - http-cookie (~> 1.0.0) - faraday-em_http (1.0.0) - faraday-em_synchrony (1.0.0) - faraday-excon (1.1.0) - faraday-httpclient (1.0.1) - faraday-multipart (1.0.4) - multipart-post (~> 2) - faraday-net_http (1.0.1) - faraday-net_http_persistent (1.2.0) - faraday-patron (1.0.0) - faraday-rack (1.0.0) - faraday-retry (1.0.3) - faraday_middleware (1.2.0) - faraday (~> 1.0) - fastimage (2.2.6) - fastlane (2.225.0) - CFPropertyList (>= 2.3, < 4.0.0) - addressable (>= 2.8, < 3.0.0) - artifactory (~> 3.0) - aws-sdk-s3 (~> 1.0) - babosa (>= 1.0.3, < 2.0.0) - bundler (>= 1.12.0, < 3.0.0) - colored - commander (~> 4.6) - dotenv (>= 2.1.1, < 3.0.0) - emoji_regex (>= 0.1, < 4.0) - excon (>= 0.71.0, < 1.0.0) - faraday (~> 1.0) - faraday-cookie_jar (~> 0.0.6) - faraday_middleware (~> 1.0) - fastimage (>= 2.1.0, < 3.0.0) - gh_inspector (>= 1.1.2, < 2.0.0) - google-apis-androidpublisher_v3 (~> 0.3) - google-apis-playcustomapp_v1 (~> 0.1) - google-cloud-storage (~> 1.31) - highline (~> 2.0) - json (< 3.0.0) - jwt (>= 2.1.0, < 3) - mini_magick (>= 4.9.4, < 5.0.0) - multipart-post (~> 2.0.0) - naturally (~> 2.2) - optparse (~> 0.1.1) - plist (>= 3.1.0, < 4.0.0) - rubyzip (>= 2.0.0, < 3.0.0) - security (= 0.1.3) - simctl (~> 1.6.3) - terminal-notifier (>= 2.0.0, < 3.0.0) - terminal-table (>= 1.4.5, < 2.0.0) - tty-screen (>= 0.6.3, < 1.0.0) - tty-spinner (>= 0.8.0, < 1.0.0) - word_wrap (~> 1.0.0) - xcodeproj (>= 1.13.0, < 2.0.0) - xcpretty (~> 0.3.0) - xcpretty-travis-formatter (>= 0.0.3) - gh_inspector (1.1.3) - google-apis-androidpublisher_v3 (0.23.0) - google-apis-core (>= 0.6, < 2.a) - google-apis-core (0.6.0) - addressable (~> 2.5, >= 2.5.1) - googleauth (>= 0.16.2, < 2.a) - httpclient (>= 2.8.1, < 3.a) - mini_mime (~> 1.0) - representable (~> 3.0) - retriable (>= 2.0, < 4.a) - rexml - webrick - google-apis-iamcredentials_v1 (0.12.0) - google-apis-core (>= 0.6, < 2.a) - google-apis-playcustomapp_v1 (0.9.0) - google-apis-core (>= 0.6, < 2.a) - google-apis-storage_v1 (0.16.0) - google-apis-core (>= 0.6, < 2.a) - google-cloud-core (1.6.0) - google-cloud-env (~> 1.0) - google-cloud-errors (~> 1.0) - google-cloud-env (1.6.0) - faraday (>= 0.17.3, < 3.0) - google-cloud-errors (1.2.0) - google-cloud-storage (1.36.2) - addressable (~> 2.8) - digest-crc (~> 0.4) - google-apis-iamcredentials_v1 (~> 0.1) - google-apis-storage_v1 (~> 0.1) - google-cloud-core (~> 1.6) - googleauth (>= 0.16.2, < 2.a) - mini_mime (~> 1.0) - googleauth (1.2.0) - faraday (>= 0.17.3, < 3.a) - jwt (>= 1.4, < 3.0) - memoist (~> 0.16) - multi_json (~> 1.11) - os (>= 0.9, < 2.0) - signet (>= 0.16, < 2.a) - highline (2.0.3) - http-cookie (1.0.5) - domain_name (~> 0.5) - httpclient (2.8.3) - jmespath (1.6.1) - json (2.6.2) - jwt (2.4.1) - memoist (0.16.2) - mini_magick (4.11.0) - mini_mime (1.1.2) - multi_json (1.15.0) - multipart-post (2.0.0) - nanaimo (0.3.0) - naturally (2.2.1) - optparse (0.1.1) - os (1.1.4) - plist (3.6.0) - public_suffix (4.0.7) - rake (13.0.6) - representable (3.2.0) - declarative (< 0.1.0) - trailblazer-option (>= 0.1.1, < 0.2.0) - uber (< 0.2.0) - retriable (3.1.2) - rexml (3.3.2) - rouge (2.0.7) - ruby2_keywords (0.0.5) - rubyzip (2.3.2) - security (0.1.3) - signet (0.17.0) - addressable (~> 2.8) - faraday (>= 0.17.5, < 3.a) - jwt (>= 1.5, < 3.0) - multi_json (~> 1.10) - simctl (1.6.8) - CFPropertyList - naturally - terminal-notifier (2.0.0) - terminal-table (1.8.0) - unicode-display_width (~> 1.1, >= 1.1.1) - trailblazer-option (0.1.2) - tty-cursor (0.7.1) - tty-screen (0.8.1) - tty-spinner (0.9.3) - tty-cursor (~> 0.7) - uber (0.1.0) - unf (0.1.4) - unf_ext - unf_ext (0.0.8.2) - unicode-display_width (1.8.0) - webrick (1.7.0) - word_wrap (1.0.0) - xcodeproj (1.25.0) - CFPropertyList (>= 2.3.3, < 4.0) - atomos (~> 0.1.3) - claide (>= 1.0.2, < 2.0) - colored2 (~> 3.1) - nanaimo (~> 0.3.0) - rexml (>= 3.3.2, < 4.0) - xcpretty (0.3.0) - rouge (~> 2.0.7) - xcpretty-travis-formatter (1.0.1) - xcpretty (~> 0.2, >= 0.0.7) - -PLATFORMS - arm64-darwin-21 - arm64-darwin-22 - arm64-darwin-23 - x86_64-darwin-19 - x86_64-darwin-20 - x86_64-darwin-21 - x86_64-darwin-22 - x86_64-darwin-23 - -DEPENDENCIES - fastlane (= 2.225.0) - -BUNDLED WITH - 2.5.23 From 78da06f1357ed308be3ee0e7e72d95da1580ea23 Mon Sep 17 00:00:00 2001 From: adamrushy Date: Tue, 9 Dec 2025 20:59:45 +0000 Subject: [PATCH 11/12] Tidy --- .github/workflows/build.yml | 9 ++------- fastlane/Fastfile | 6 ------ 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1be8f4c..9c5223f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,11 +8,6 @@ on: env: DEVELOPER_DIR: /Applications/Xcode_26.0.1.app/Contents/Developer - FASTLANE_SKIP_UPDATE_CHECK: true - CI: true - TERM: dumb - FASTLANE_DISABLE_COLORS: true - NO_COLOR: true jobs: build: @@ -22,13 +17,13 @@ jobs: - name: Checkout iOS Repository uses: actions/checkout@v2 - - name: Setup Ruby and install bundler + - name: Setup Ruby uses: ruby/setup-ruby@v1 with: ruby-version: '3.0' bundler-cache: false - - name: Install dependencies + - name: Install Dependencies run: | gem install bundler bundle install diff --git a/fastlane/Fastfile b/fastlane/Fastfile index c19b86b..b7c42b0 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -1,11 +1,5 @@ default_platform(:ios) -# Workaround for CI terminal size detection issue -if ENV['CI'] - ENV['FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT'] = '180' - ENV['FASTLANE_XCODE_LIST_TIMEOUT'] = '180' -end - platform :ios do desc "Build SwiftLeeds scheme" lane :build do |options| From c5c4c7c1a89e5a9078fdf7d68816822f35561c27 Mon Sep 17 00:00:00 2001 From: adamrushy Date: Tue, 9 Dec 2025 21:23:00 +0000 Subject: [PATCH 12/12] Remove gemfile + remove deps install on CI --- .github/workflows/build.yml | 13 +------------ Gemfile | 3 --- 2 files changed, 1 insertion(+), 15 deletions(-) delete mode 100644 Gemfile diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9c5223f..6ba25de 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,16 +17,5 @@ jobs: - name: Checkout iOS Repository uses: actions/checkout@v2 - - name: Setup Ruby - uses: ruby/setup-ruby@v1 - with: - ruby-version: '3.0' - bundler-cache: false - - - name: Install Dependencies - run: | - gem install bundler - bundle install - - name: Build iOS Project via Fastlane - run: bundle exec fastlane build_debug + run: fastlane build_debug diff --git a/Gemfile b/Gemfile deleted file mode 100644 index c77b7dd..0000000 --- a/Gemfile +++ /dev/null @@ -1,3 +0,0 @@ -source "https://rubygems.org" - -gem 'fastlane'