Build/test the ash example on Ubuntu/Windows CI (#203)

* Build/test the ash example on Ubuntu/Windows CI

* Remove CI check for ash example

Co-authored-by: Jake Shadle <jake.shadle@embark-studios.com>
This commit is contained in:
Ashley Hauck 2020-11-03 10:28:02 +01:00 committed by GitHub
parent 0c33e5b83d
commit 3480521626
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ jobs:
run: cargo fetch --target ${{ matrix.target }}
- name: Run tests
shell: bash
run: .github/workflows/test.sh
run: .github/workflows/test.sh ${{ runner.os }}
lint:
name: Lint

View File

@ -44,7 +44,7 @@ cargo_test crates/spirv-builder
# Examples
# See: https://github.com/EmbarkStudios/rust-gpu/issues/84
if [[ -z "${CI}" && "$os" != "macOS" ]]; then
if [[ "$os" != "macOS" ]]; then
cargo_test examples/runners/ash
fi