Skip to content

Commit

Permalink
Further adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
gemmakbarlow committed Jan 10, 2025
1 parent b20cf2f commit 50450fa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 13 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,33 +22,33 @@ jobs:
- xcode: '15.4'
variation: ios
os_version: 17.5
- xcode: '16.1'
- xcode: '16.2'
variation: ios
os_version: 18.1

- xcode: '15.4'
variation: tvos
os_version: 17.5
- xcode: '16.1'
- xcode: '16.2'
variation: tvos
os_version: 18.1

- xcode: '15.4'
variation: watchos
os_version: 10.5
- xcode: '16.1'
- xcode: '16.2'
variation: watchos
os_version: 11.1

- xcode: '15.4'
variation: macos
- xcode: '16.1'
- xcode: '16.2'
variation: macos

- xcode: '15.4'
variation: examples
os_version: 17.5
- xcode: '16.1'
- xcode: '16.2'
variation: examples
os_version: 18.1

Expand Down
11 changes: 3 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
# Default versions
IOS_VERSION ?= 17.5
TVOS_VERSION ?= 17.5
WATCHOS_VERSION ?= 10.5

OTHER_SWIFT_FLAGS="-DRESILIENT_LIBRARIES"
TEST_RUNNER_CI = $(CI)

Expand Down Expand Up @@ -124,15 +119,15 @@ $(shell xcrun simctl list devices available '$(1)' | grep '$(2)' | sort -r | hea
endef

define destination_ios
platform=iOS Simulator,name=$(call name_for,iOS,iPhone 15 Pro),OS=$(IOS_VERSION)
platform=iOS Simulator,name=$(call name_for,iOS $(IOS_VERSION),iPhone 15 Pro),OS=$(IOS_VERSION)
endef

define destination_watchos
platform=watchOS Simulator,name=$(call name_for,watchOS,Watch),OS=$(WATCHOS_VERSION)
platform=watchOS Simulator,name=$(call name_for,watchOS $(WATCHOS_VERSION),Watch),OS=$(WATCHOS_VERSION)
endef

define destination_tvos
platform=tvOS Simulator,name=$(call name_for,tvOS,TV),OS=$(TVOS_VERSION)
platform=tvOS Simulator,name=$(call name_for,tvOS $(TVOS_VERSION),TV),OS=$(TVOS_VERSION)
endef

define destination_macos
Expand Down

0 comments on commit 50450fa

Please sign in to comment.