implot-rs/.github/workflows/rust.yml
4bb4 c0b2155bad Update rust.yml
Change the cloning method
2021-12-05 08:10:09 +01:00

61 lines
1.4 KiB
YAML

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: "recursive"
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y libxcb-shape0-dev libxcb-xfixes0-dev
- 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
build-win:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
submodules: "recursive"
- 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