@@ -91,11 +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
100+ env :
101+ LC_CTYPE : en_US.UTF-8
99102 run : |-
100103 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 \
101104 | xcpretty --report junit --output .out/test-results/test-sim-ios-simulator.xml
@@ -115,11 +118,14 @@ jobs:
115118 DEVELOPER_DIR : /Applications/Xcode_26.1.app
116119 steps :
117120 - uses : actions/checkout@v5
121+ - run : brew install gmp libyaml
118122 - uses : ruby/setup-ruby@v1
119123 with :
120124 ruby-version : ' 3.4'
121125 - run : gem install xcpretty
122126 - name : xcodebuild test
127+ env :
128+ LC_CTYPE : en_US.UTF-8
123129 run : |-
124130 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 \
125131 | xcpretty --report junit --output .out/test-results/test-sim-watchos-simulator.xml
@@ -139,11 +145,14 @@ jobs:
139145 DEVELOPER_DIR : /Applications/Xcode_26.1.app
140146 steps :
141147 - uses : actions/checkout@v5
148+ - run : brew install gmp libyaml
142149 - uses : ruby/setup-ruby@v1
143150 with :
144151 ruby-version : ' 3.4'
145152 - run : gem install xcpretty
146153 - name : xcodebuild test
154+ env :
155+ LC_CTYPE : en_US.UTF-8
147156 run : |-
148157 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 \
149158 | xcpretty --report junit --output .out/test-results/test-sim-tvos-simulator.xml
@@ -163,11 +172,14 @@ jobs:
163172 DEVELOPER_DIR : /Applications/Xcode_26.1.app
164173 steps :
165174 - uses : actions/checkout@v5
175+ - run : brew install gmp libyaml
166176 - uses : ruby/setup-ruby@v1
167177 with :
168178 ruby-version : ' 3.4'
169179 - run : gem install xcpretty
170180 - name : xcodebuild test
181+ env :
182+ LC_CTYPE : en_US.UTF-8
171183 run : |-
172184 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 \
173185 | xcpretty --report junit --output .out/test-results/test-sim-mac-catalyst.xml
0 commit comments