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

@@ -28,9 +28,7 @@ jobs:
with:
submodules: true
- uses: Swatinem/rust-cache@v2
- run: |
cd examples
./test.sh
- run: examples/test.sh
cmake:
runs-on: ubuntu-latest
steps:

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