Take a crack at updating the GitHub CI to compile the iOS example as well. I may break this one.
This commit is contained in:
parent
c58de62f1d
commit
9decae65eb
18
.github/workflows/ci.yml
vendored
18
.github/workflows/ci.yml
vendored
|
@ -58,9 +58,15 @@ jobs:
|
||||||
with:
|
with:
|
||||||
command: build
|
command: build
|
||||||
args: --features webview --example webview_custom_protocol
|
args: --features webview --example webview_custom_protocol
|
||||||
# fails because it needs uikit, which is not
|
# The below should technically, maybe, probably use the iOS rust toolchain.
|
||||||
# building for me
|
# That said, since it's all Objective-C message passing under the hood, we're
|
||||||
#- uses: actions-rs/cargo@v1
|
# really just looking for whether we've broken the iOS build. It is likely
|
||||||
# with:
|
# that more robust tests/checking infrastructure should exist for this side
|
||||||
# command: build
|
# of things as the iOS portion gets iterated on.
|
||||||
# args: --example ios-beta
|
#
|
||||||
|
# (e.g, this at the moment will not catch invalid selector calls, like if an appkit-specific
|
||||||
|
# selector is used for something on iOS)
|
||||||
|
- uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: build
|
||||||
|
args: --example ios-beta --no-default-features --features uikit,autolayout
|
||||||
|
|
Loading…
Reference in a new issue