mirror of
https://github.com/nushell/nushell.git
synced 2024-11-08 01:24:38 +01:00
efdfeac55e
Following up on #7180 with some feature cleanup: - Move the `database` feature from `plugin` to `default` - Rename the `database` feature to `sqlite` - Remove `--features=extra` from a lot of scripts etc. - No need to specify this, the `extra` feature is now the same as the default feature set - Remove the now-redundant 2nd Ubuntu test run
24 lines
603 B
Plaintext
24 lines
603 B
Plaintext
echo '-------------------------------------------------------------------'
|
|
echo 'Building nushell (nu) with dataframes and all the plugins'
|
|
echo '-------------------------------------------------------------------'
|
|
|
|
echo $'(char nl)Building nushell'
|
|
echo '----------------------------'
|
|
cargo build --features=dataframe
|
|
|
|
let plugins = [
|
|
nu_plugin_inc,
|
|
nu_plugin_gstat,
|
|
nu_plugin_query,
|
|
nu_plugin_example,
|
|
nu_plugin_custom_values,
|
|
]
|
|
|
|
for plugin in $plugins {
|
|
$'(char nl)Building ($plugin)'
|
|
'----------------------------'
|
|
cd $'crates/($plugin)'
|
|
cargo build
|
|
ignore
|
|
}
|