@@ -91,12 +91,14 @@ jobs:
9191 DEVELOPER_DIR : /Applications/Xcode_26.1.app
9292 steps :
9393 - uses : actions/checkout@v5
94+ - run : brew install gmp libyaml
9495 - uses : ruby/setup-ruby@v1
9596 with :
9697 ruby-version : ' 3.4'
9798 - run : gem install xcpretty
9899 - name : xcodebuild test
99100 run : |-
101+ export LC_CTYPE=en_US.UTF-8
100102 xcodebuild -scheme pkl-swift-Package -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 17' ONLY_ACTIVE_ARCH=YES CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=YES COMPILER_INDEX_STORE_ENABLE=NO test \
101103 | xcpretty --report junit --output .out/test-results/test-sim-ios-simulator.xml
102104 - name : Upload Test Result XML
@@ -115,12 +117,14 @@ jobs:
115117 DEVELOPER_DIR : /Applications/Xcode_26.1.app
116118 steps :
117119 - uses : actions/checkout@v5
120+ - run : brew install gmp libyaml
118121 - uses : ruby/setup-ruby@v1
119122 with :
120123 ruby-version : ' 3.4'
121124 - run : gem install xcpretty
122125 - name : xcodebuild test
123126 run : |-
127+ export LC_CTYPE=en_US.UTF-8
124128 xcodebuild -scheme pkl-swift-Package -sdk watchsimulator -destination 'platform=watchOS Simulator,name=Apple Watch Series 11 (42mm)' ONLY_ACTIVE_ARCH=YES CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=YES COMPILER_INDEX_STORE_ENABLE=NO test \
125129 | xcpretty --report junit --output .out/test-results/test-sim-watchos-simulator.xml
126130 - name : Upload Test Result XML
@@ -139,12 +143,14 @@ jobs:
139143 DEVELOPER_DIR : /Applications/Xcode_26.1.app
140144 steps :
141145 - uses : actions/checkout@v5
146+ - run : brew install gmp libyaml
142147 - uses : ruby/setup-ruby@v1
143148 with :
144149 ruby-version : ' 3.4'
145150 - run : gem install xcpretty
146151 - name : xcodebuild test
147152 run : |-
153+ export LC_CTYPE=en_US.UTF-8
148154 xcodebuild -scheme pkl-swift-Package -sdk appletvsimulator -destination 'platform=tvOS Simulator,name=Apple TV 4K (3rd generation)' ONLY_ACTIVE_ARCH=YES CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=YES COMPILER_INDEX_STORE_ENABLE=NO test \
149155 | xcpretty --report junit --output .out/test-results/test-sim-tvos-simulator.xml
150156 - name : Upload Test Result XML
@@ -163,12 +169,14 @@ jobs:
163169 DEVELOPER_DIR : /Applications/Xcode_26.1.app
164170 steps :
165171 - uses : actions/checkout@v5
172+ - run : brew install gmp libyaml
166173 - uses : ruby/setup-ruby@v1
167174 with :
168175 ruby-version : ' 3.4'
169176 - run : gem install xcpretty
170177 - name : xcodebuild test
171178 run : |-
179+ export LC_CTYPE=en_US.UTF-8
172180 xcodebuild -scheme pkl-swift-Package -sdk macosx -destination 'platform=macOS,variant=Mac Catalyst,arch=arm64' ONLY_ACTIVE_ARCH=YES CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO COMPILER_INDEX_STORE_ENABLE=NO ARCH=arm64 VALID_ARCHS=arm64 SUPPORTS_MACCATALYST=YES TARGETED_DEVICE_FAMILY=2 CODE_SIGN_IDENTITY=- test \
173181 | xcpretty --report junit --output .out/test-results/test-sim-mac-catalyst.xml
174182 - name : Upload Test Result XML
0 commit comments