mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 00:32:15 +03:00
12 lines
247 B
Bash
Executable File
12 lines
247 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
## This script assumes `plugins` is in `$CDPATH`
|
|
|
|
set -eu
|
|
|
|
(cd plugins && cargo build && ls -al target/debug)
|
|
|
|
export PLUGINS_DIR=$(cd plugins > /dev/null && pwd)
|
|
echo "Using plugins at $PLUGINS_DIR"
|
|
|
|
(cd runner && cargo test) |