Merge branch 'main' into feature/tagged-pointer

This commit is contained in:
Yota Toyama
2023-09-28 15:55:23 +10:00
committed by GitHub
2 changed files with 7 additions and 10 deletions

View File

@@ -2,12 +2,11 @@
set -ex
cargo build
cd $(dirname $0)
for cargo_file in */Cargo.toml
do
target/debug/$(dirname $cargo_file) &
pid=$!
sleep 10
kill $pid
for cargo_file in */Cargo.toml; do
cargo run --bin $(dirname $cargo_file) &
pid=$!
sleep 20
kill $pid
done