Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/workflows/ios_emerge_upload_adhoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build_adhoc:
runs-on: macos-15
runs-on: macos-26

defaults:
run:
Expand All @@ -19,9 +19,6 @@ jobs:
with:
fetch-depth: 0

- name: Select Xcode version
run: sudo xcode-select -s '/Applications/Xcode_26.0.1.app/Contents/Developer'

- name: Set up Ruby env
uses: ruby/setup-ruby@v1
with:
Expand Down
10 changes: 2 additions & 8 deletions .github/workflows/ios_emerge_upload_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
build:
runs-on: macos-15
runs-on: macos-26

defaults:
run:
Expand All @@ -18,9 +18,6 @@ jobs:
with:
fetch-depth: 0

- name: Select Xcode version
run: sudo xcode-select -s '/Applications/Xcode_26.0.1.app/Contents/Developer'

- name: Set up Ruby env
uses: ruby/setup-ruby@v1
with:
Expand Down Expand Up @@ -52,7 +49,7 @@ jobs:
EMERGE_BUILD_TYPE: release

build_adhoc:
runs-on: macos-15
runs-on: macos-26

defaults:
run:
Expand All @@ -64,9 +61,6 @@ jobs:
with:
fetch-depth: 0

- name: Select Xcode version
run: sudo xcode-select -s '/Applications/Xcode_26.0.1.app/Contents/Developer'

- name: Set up Ruby env
uses: ruby/setup-ruby@v1
with:
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/ios_emerge_upload_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build:
runs-on: macos-15
runs-on: macos-26

defaults:
run:
Expand All @@ -19,9 +19,6 @@ jobs:
with:
fetch-depth: 0

- name: Select Xcode version
run: sudo xcode-select -s '/Applications/Xcode_26.0.1.app/Contents/Developer'

- name: Set up Ruby env
uses: ruby/setup-ruby@v1
with:
Expand Down
11 changes: 3 additions & 8 deletions .github/workflows/ios_emerge_upload_snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
upload_emerge_snapshots:
runs-on: macos-15
runs-on: macos-26

defaults:
run:
Expand All @@ -21,9 +21,6 @@ jobs:
with:
fetch-depth: 0

- name: Select Xcode version
run: sudo xcode-select -s '/Applications/Xcode_26.0.1.app/Contents/Developer'

- name: Set up Ruby env
uses: ruby/setup-ruby@v1
with:
Expand All @@ -39,7 +36,7 @@ jobs:
EMERGE_API_TOKEN: ${{ secrets.EMERGE_API_KEY }}

upload_swift_snapshot_testing_snapshots:
runs-on: macos-15
runs-on: macos-26
defaults:
run:
working-directory: ./ios
Expand All @@ -48,8 +45,6 @@ jobs:
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Select Xcode version
run: sudo xcode-select -s '/Applications/Xcode_26.0.1.app/Contents/Developer'
- name: Ruby setup
uses: ruby/setup-ruby@v1
with:
Expand All @@ -70,7 +65,7 @@ jobs:
set -o pipefail && xcodebuild test \
-scheme HackerNews \
-sdk iphonesimulator \
-destination 'platform=iOS Simulator,name=iPhone 16 Pro,OS=18.6' \
-destination 'platform=iOS Simulator,name=iPhone 16 Pro,OS=26.2' \
-only-testing:HackerNewsTests/SwiftSnapshotTest \
-allowProvisioningUpdates \
-authenticationKeyPath "$AUTH_KEY_PATH" \
Expand Down
12 changes: 9 additions & 3 deletions ios/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
GIT
remote: https://github.com/getsentry/sentry-fastlane-plugin.git
revision: 3a6b1814ecdd96acb90e04a5a9e3a23e60c55bf3
branch: no/add-install-groups-support
specs:
fastlane-plugin-sentry (2.0.0)
os (~> 1.1, >= 1.1.4)

GEM
remote: https://rubygems.org/
specs:
Expand Down Expand Up @@ -120,8 +128,6 @@ GEM
xcpretty-travis-formatter (>= 0.0.3, < 2.0.0)
fastlane-plugin-emerge (0.10.8)
faraday (~> 1.1)
fastlane-plugin-sentry (1.35.0)
os (~> 1.1, >= 1.1.4)
fastlane-sirp (1.0.0)
sysrandom (~> 1.0)
gh_inspector (1.1.3)
Expand Down Expand Up @@ -235,7 +241,7 @@ PLATFORMS
DEPENDENCIES
fastlane
fastlane-plugin-emerge (= 0.10.8)
fastlane-plugin-sentry (= 1.35.0)
fastlane-plugin-sentry!
xcpretty

BUNDLED WITH
Expand Down
2 changes: 1 addition & 1 deletion ios/emerge_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ version: 2.0
snapshots:
ios:
runSettings:
- osVersion: 26.1
- osVersion: 26.2
6 changes: 4 additions & 2 deletions ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,8 @@ platform :ios do
org_slug: 'sentry',
project_slug: 'launchpad-test-ios',
build_configuration: 'Release',
log_level: 'debug'
log_level: 'debug',
install_groups: ['grouptest', 'release']
)
end

Expand All @@ -196,7 +197,8 @@ platform :ios do
org_slug: 'sentry',
project_slug: 'launchpad-test-ios',
build_configuration: ENV['CONFIGURATION'],
log_level: 'debug'
log_level: 'debug',
install_groups: ['grouptest', 'release']
)
end

Expand Down
2 changes: 1 addition & 1 deletion ios/fastlane/Pluginfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# Ensure this file is checked in to source control!

gem 'fastlane-plugin-emerge', '0.10.8'
gem 'fastlane-plugin-sentry', '1.36.0'
gem 'fastlane-plugin-sentry', git: 'https://github.com/getsentry/sentry-fastlane-plugin.git', branch: 'no/add-install-groups-support'
Loading