mirror of
https://github.com/fluencelabs/marine-rs-sdk-test
synced 2024-12-04 23:30:18 +00:00
0bf0489ed2
* move related examples * update Cargo.lock * update test macro invocations * update naming + add CI step * add marine download CI step * remove aggressive cargo update * fix ci
14 lines
247 B
Bash
Executable File
14 lines
247 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
for dir in ./*; do
|
|
# skip non-directory entries
|
|
[ -d "$dir" ] || continue
|
|
|
|
# skip if there's no build.sh in the directory
|
|
[ -e "$dir/build.sh" ] || continue
|
|
|
|
(cd "$dir"; ./build.sh)
|
|
done
|