From ba893c3400e589d5505d913d4a1af6f620617ca4 Mon Sep 17 00:00:00 2001 From: Sebastian Imlay Date: Sun, 21 Aug 2022 01:32:29 -0400 Subject: [PATCH] Fix ios example in ci --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb97045..ff044b7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,6 +58,11 @@ jobs: with: command: build args: --features webview --example webview_custom_protocol + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + override: true + target: x86_64-apple-ios # Since it's all Objective-C message passing under the hood, we're # really just looking for whether we've broken the iOS build. It is likely # that more robust tests/checking infrastructure should exist for this side @@ -68,8 +73,7 @@ jobs: - uses: actions-rs/cargo@v1 with: command: build - target: x86_64-apple-ios - args: --example ios-beta --no-default-features --features uikit,autolayout + args: --target x86_64-apple-ios --example ios-beta --no-default-features --features uikit,autolayout ios: name: Check that iOS tests pass via dinghy.