Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
submodules: recursive

- name: Select Xcode version
run: sudo xcode-select -s /Applications/Xcode_15.4.app/Contents/Developer
run: sudo xcode-select -s /Applications/Xcode_16.0.app/Contents/Developer

- name: Install xcpretty
run: gem install xcpretty
Expand All @@ -59,7 +59,7 @@ jobs:
-project V2er.xcodeproj \
-scheme V2er \
-sdk iphonesimulator \
-destination 'platform=iOS Simulator,name=iPhone 15' \
-destination 'platform=iOS Simulator,name=iPhone 16' \
-enableCodeCoverage YES \
-derivedDataPath build/DerivedData \
CODE_SIGN_IDENTITY="" \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Select Xcode version
run: sudo xcode-select -s /Applications/Xcode_15.4.app/Contents/Developer
run: sudo xcode-select -s /Applications/Xcode_16.0.app/Contents/Developer

- name: Update Swift packages
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ios-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
submodules: recursive

- name: Select Xcode version
run: sudo xcode-select -s /Applications/Xcode_15.4.app/Contents/Developer
run: sudo xcode-select -s /Applications/Xcode_16.0.app/Contents/Developer

- name: Show Xcode version
run: xcodebuild -version
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
-project V2er.xcodeproj \
-scheme V2er \
-sdk iphonesimulator \
-destination 'platform=iOS Simulator,name=iPhone 15' \
-destination 'platform=iOS Simulator,name=iPhone 16' \
ONLY_ACTIVE_ARCH=YES \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO | xcpretty --color
Expand All @@ -61,7 +61,7 @@ jobs:
-project V2er.xcodeproj \
-scheme V2er \
-sdk iphonesimulator \
-destination 'platform=iOS Simulator,name=iPhone 15' \
-destination 'platform=iOS Simulator,name=iPhone 16' \
ONLY_ACTIVE_ARCH=YES \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO | xcpretty --color --test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
fetch-depth: 0

- name: Select Xcode version
run: sudo xcode-select -s /Applications/Xcode_15.4.app/Contents/Developer
run: sudo xcode-select -s /Applications/Xcode_16.0.app/Contents/Developer

- name: Setup Ruby
uses: ruby/setup-ruby@v1
Expand Down
Loading