From db8af85fedd67333e6de029fc42adf4e7836398d Mon Sep 17 00:00:00 2001 From: Sebastian Imlay Date: Sun, 14 Aug 2022 15:48:50 -0400 Subject: [PATCH] Simplify CI steps --- .github/workflows/ci.yml | 46 ++-------------------------------------- 1 file changed, 2 insertions(+), 44 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 986b94b..c1a9503 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,56 +44,14 @@ jobs: override: true - uses: actions-rs/cargo@v1 with: - command: build - args: --example animation - # Will exhibit linker warnings for 10.13 and below, expected: + command: test - uses: actions-rs/cargo@v1 with: command: build - args: --example autolayout - - uses: actions-rs/cargo@v1 - with: - command: build - args: --example calculator - - uses: actions-rs/cargo@v1 - with: - command: build - args: --example custom_image_drawing - - uses: actions-rs/cargo@v1 - with: - command: build - args: --example defaults - - uses: actions-rs/cargo@v1 - with: - command: build - args: --example frame_layout + args: --features webview --example webview_custom_protocol # fails because it needs uikit, which is not # building for me #- uses: actions-rs/cargo@v1 # with: # command: build # args: --example ios-beta - - uses: actions-rs/cargo@v1 - with: - command: build - args: --example text_input - - uses: actions-rs/cargo@v1 - with: - command: build - args: --example todos_list - - uses: actions-rs/cargo@v1 - with: - command: build - args: --example window - - uses: actions-rs/cargo@v1 - with: - command: build - args: --example window_controller - - uses: actions-rs/cargo@v1 - with: - command: build - args: --example window_delegate - - uses: actions-rs/cargo@v1 - with: - command: build - args: --features webview --example webview_custom_protocol