atlas is more threadsafe through clone, cleanup of tests #273
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push] | |
name: push | |
jobs: | |
renderling-build-shaders: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- run: | | |
# ensure the shader binaries were properly checked in | |
rm -rf crates/renderling/src/linkage/*.spv | |
cd shaders && cargo run --release && cd .. | |
git diff --exit-code --no-ext-diff crates/renderling/src/linkage | |
#renderling-test: | |
# runs-on: [ubuntu-latest, gpu] | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - uses: actions-rs/toolchain@v1 | |
# with: | |
# toolchain: stable | |
# - run: cargo test |