mirror of
https://github.com/nushell/nushell.git
synced 2024-11-07 17:14:23 +01:00
905e3d0715
# Description Removes the old `nu-cmd-dataframe` crate in favor of the polars plugin. As such, this PR also removes the `dataframe` feature, related CI, and full releases of nushell.
36 lines
707 B
Bash
Executable File
36 lines
707 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
DIR=$(readlink -f $(dirname "${BASH_SOURCE[0]}"))
|
|
REPO_ROOT=$(dirname $DIR)
|
|
|
|
echo "---------------------------------------------------------------"
|
|
echo "Building nushell (nu) and all the plugins"
|
|
echo "---------------------------------------------------------------"
|
|
echo ""
|
|
|
|
NU_PLUGINS=(
|
|
'nu_plugin_example'
|
|
'nu_plugin_gstat'
|
|
'nu_plugin_inc'
|
|
'nu_plugin_query'
|
|
'nu_plugin_custom_values'
|
|
)
|
|
|
|
echo "Building nushell"
|
|
(
|
|
cd $REPO_ROOT
|
|
cargo build --locked
|
|
)
|
|
|
|
for plugin in "${NU_PLUGINS[@]}"
|
|
do
|
|
echo "Building $plugin..."
|
|
echo "-----------------------------"
|
|
(
|
|
cd "$REPO_ROOT/crates/$plugin"
|
|
cargo build
|
|
)
|
|
done
|