File tree Expand file tree Collapse file tree 1 file changed +20
-2
lines changed Expand file tree Collapse file tree 1 file changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -135,14 +135,14 @@ jobs:
135
135
with :
136
136
command : check
137
137
use-cross : true
138
- args : --target armv7-unknown-linux-gnueabihf --workspace --all-features --verbose
138
+ args : --target armv7-unknown-linux-gnueabihf --workspace --all-features --verbose
139
139
140
140
- name : Test all features for armv7
141
141
uses : actions-rs/cargo@v1
142
142
with :
143
143
command : test
144
144
use-cross : true
145
- args : --target armv7-unknown-linux-gnueabihf --workspace --all-features --verbose
145
+ args : --target armv7-unknown-linux-gnueabihf --workspace --all-features --verbose
146
146
147
147
asmjs-wasm32-test :
148
148
strategy :
@@ -285,3 +285,21 @@ jobs:
285
285
run : cargo install cargo-apk
286
286
- name : Build APK
287
287
run : cargo apk build --example beep
288
+
289
+ ios-build :
290
+ runs-on : macOS-latest
291
+ steps :
292
+ - uses : actions/checkout@v2
293
+ - name : Install llvm and clang
294
+ run : brew install llvm
295
+ - name : Install stable
296
+ uses : actions-rs/toolchain@v1
297
+ with :
298
+ profile : minimal
299
+ toolchain : stable
300
+ override : true
301
+ - name : Build iphoneos feedback example
302
+ run : xcodebuild -scheme cpal-ios-example -configuration Debug -derivedDataPath build -sdk iphoneos
303
+ - name : Build iphonesimulator feedback example
304
+ run : xcodebuild -scheme cpal-ios-example -configuration Debug -derivedDataPath build -sdk iphonesimulator
305
+
You can’t perform that action at this time.
0 commit comments