PowerShell7/build.sh

38 lines
822 B
Bash
Raw Normal View History

#!/usr/bin/env bash
export BIN=$(pwd)/bin
2015-12-16 23:34:05 +00:00
mkdir -p $BIN/Modules
# Deploy PowerShell modules
2015-12-16 23:34:05 +00:00
(
cd $BIN/Modules
ln -sf ../../ext-src/pester Pester
ln -sf ../../src/monad/monad/miscfiles/modules/Microsoft.PowerShell.Utility .
2015-12-16 23:34:05 +00:00
)
# Build native components
(
cd src/monad-native
cmake -DCMAKE_BUILD_TYPE=Debug .
make -j
ctest -V
# Deploy development copy of libpsnative
cp native/libpsnative.so $BIN
)
# Build registry stub (this should go away, again)
(
cd src/registry-stub
make
cp api-ms-win-core-registry-l1-1-0.dll $BIN
)
2015-12-10 20:33:52 +00:00
# Publish PowerShell
(
cd src/Microsoft.PowerShell.Linux.Host
dotnet publish --framework dnxcore50 --runtime ubuntu.14.04-x64 --output $BIN
# Copy files that dotnet-publish doesn't currently deploy
cp *.ps1xml *_profile.ps1 $BIN
)