PowerShell/build.sh

37 lines
727 B
Bash
Raw Normal View History

#!/usr/bin/env bash
export BIN=$(pwd)/bin
2015-12-17 00:34:05 +01:00
mkdir -p $BIN/Modules
# Deploy Pester
(
cd $BIN/Modules
ln -s ../../ext-src/pester Pester
)
# 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 21:33:52 +01: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
)