mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-22 14:56:42 +00:00
12 lines
321 B
Bash
Executable File
12 lines
321 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# This script builds and runs all the examples
|
|
# It is NOT headless
|
|
# Human input is required to close all the windows
|
|
# Human monitoring is also required to check for errors in stdout
|
|
|
|
cargo build
|
|
exa -F src/bin | rg '(\.rs|/)$' | sd '(\.rs|/)' '' | rargs cargo run --bin {}
|
|
rm -f pipeline_cache.bin
|