mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 02:06:08 +03:00
ac3a55a435
- Make `VisitAstPath` take `AstNodePath<AstKind, AstNodeRef>`. - Add index to `AstKind::Vec*`.
43 lines
1.1 KiB
Bash
Executable File
43 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -u
|
|
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
|
|
function prepend() { while read line; do echo "${1}${line}"; done; }
|
|
|
|
crates=$(\
|
|
cargo metadata --format-version 1 \
|
|
| jq -r '.workspace_members[]' \
|
|
| cut -f1 -d" " \
|
|
| sort \
|
|
)
|
|
|
|
# yq query syntax is weird, so we have to use jq
|
|
json_str="$(yq -o=json $SCRIPT_DIR/tests.yml)"
|
|
|
|
for crate in $crates
|
|
do
|
|
echo "- crate: $crate"
|
|
echo " os: ubuntu-latest"
|
|
|
|
if echo $json_str | jq -e ".check.\"$crate\"" > /dev/null``; then
|
|
echo " check: |"
|
|
|
|
check_commands=$(echo $json_str | jq -e -r ".check.\"$crate\" | .[]")
|
|
|
|
while IFS= read -r line; do
|
|
echo " cargo $line"
|
|
done <<< "$check_commands"
|
|
fi
|
|
|
|
|
|
if echo $json_str | jq -e "select(.os.macos | index(\"$crate\"))" > /dev/null``; then
|
|
echo "- crate: $crate"
|
|
echo " os: macos-latest"
|
|
fi
|
|
|
|
if echo $json_str | jq -e "select(.os.windows | index(\"$crate\"))" > /dev/null``; then
|
|
echo "- crate: $crate"
|
|
echo " os: windows-latest"
|
|
fi
|
|
done |