Update rust.yml
This commit is contained in:
parent
4401d696b1
commit
3c340b39b1
1 changed files with 26 additions and 0 deletions
26
.github/workflows/rust.yml
vendored
26
.github/workflows/rust.yml
vendored
|
@ -30,3 +30,29 @@ jobs:
|
|||
run: cd implot-examples/implot-glium-demo && cargo build
|
||||
- name: Build wgpu demo
|
||||
run: cd implot-examples/implot-wgpu-demo && cargo build
|
||||
|
||||
build-win:
|
||||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: jwsi/submodule-checkout@v1
|
||||
- name: Install latest rust toolchain
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
default: true
|
||||
override: true
|
||||
- name: Build
|
||||
run: cargo build --verbose
|
||||
- name: Run idiomatic bindings tests
|
||||
run: cargo test --verbose
|
||||
- name: Run FFI tests
|
||||
run: cd implot-sys/ && cargo test --verbose
|
||||
- name: Build glium demo
|
||||
run: cd implot-examples/implot-glium-demo && cargo build
|
||||
- name: Build wgpu demo
|
||||
run: cd implot-examples/implot-wgpu-demo && cargo build
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue