Skip to content

Commit

Permalink
Added Xcode 15 force in fastlane
Browse files Browse the repository at this point in the history
  • Loading branch information
kaulex99 committed Dec 29, 2023
1 parent 16d1565 commit a60af46
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ jobs:
- name: Run XcodeGen
run: xcodegen

- name: Install xcodes
run: brew install xcodes

- name: Run tests with fastlane
run: bundle exec fastlane test

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
username: cirunner
password: ${{ secrets.GITHUB_TOKEN }}

- name: Install xcodes
run: brew install xcodes

- name: Install XcodeGen
run: brew install xcodegen

Expand Down
4 changes: 4 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
default_platform(:ios)

platform :ios do
before_all do
xcodes(version: "15.1", select_for_current_build_only: true)
end

desc "Run all iOS unit and ui tests."
lane :test do
run_tests(scheme: "WaiterRobotLava")
Expand Down

0 comments on commit a60af46

Please sign in to comment.