File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change 2222 # - name: cargo test - all features
2323 # run: cargo test --all-features --verbose
2424
25+ ios-build :
26+ runs-on : macOS-latest
27+ steps :
28+ - uses : actions/checkout@v2
29+ - name : Install llvm and clang
30+ run : brew install llvm
31+ - name : Install stable
32+ uses : actions-rs/toolchain@v1
33+ with :
34+ profile : minimal
35+ toolchain : stable
36+ override : true
37+ - name : Add iOS targets
38+ run : rustup target add aarch64-apple-ios x86_64-apple-ios
39+ - name : Install cargo lipo
40+ run : cargo install cargo-lipo
41+ - name : Build iphonesimulator feedback example
42+ run : cd examples/ios && xcodebuild -scheme coreaudio-ios-example -configuration Debug -derivedDataPath build -sdk iphonesimulator
43+
2544 # Build the docs with all features to make sure docs.rs will work.
2645 macos-docs :
2746 runs-on : macOS-latest
You can’t perform that action at this time.
0 commit comments