Simplify CI steps
This commit is contained in:
parent
8bffc30ac1
commit
db8af85fed
46
.github/workflows/ci.yml
vendored
46
.github/workflows/ci.yml
vendored
|
@ -44,56 +44,14 @@ jobs:
|
||||||
override: true
|
override: true
|
||||||
- uses: actions-rs/cargo@v1
|
- uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: build
|
command: test
|
||||||
args: --example animation
|
|
||||||
# Will exhibit linker warnings for 10.13 and below, expected:
|
|
||||||
- uses: actions-rs/cargo@v1
|
- uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: build
|
command: build
|
||||||
args: --example autolayout
|
args: --features webview --example webview_custom_protocol
|
||||||
- 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
|
|
||||||
# fails because it needs uikit, which is not
|
# fails because it needs uikit, which is not
|
||||||
# building for me
|
# building for me
|
||||||
#- uses: actions-rs/cargo@v1
|
#- uses: actions-rs/cargo@v1
|
||||||
# with:
|
# with:
|
||||||
# command: build
|
# command: build
|
||||||
# args: --example ios-beta
|
# 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
|
|
||||||
|
|
Loading…
Reference in a new issue