add script to test that all examples compile

This commit is contained in:
2020-10-07 18:35:13 +02:00
parent 6b685dcaa3
commit 5686ad7bd3
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
set -e
cargo build
for file in examples/*
do
echo "--- $file ---"
target/debug/launcher -P "$file"
done