summarylogtreecommitdiffstats
path: root/build.sh
blob: 33c4d7452cc79e27cffdd47e0b6915228be063ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env bash
set -e

if hash powershell 2>/dev/null; then
    echo 'Continuing with `powershell -noprofile -c Start-PSBuild`'
    powershell -noprofile -c "Import-Module ./build.psm1; Start-PSBuild"
else
   echo 'Continuing with full manual build'

   ## Restore
   dotnet restore src/powershell-unix
   dotnet restore src/ResGen
   dotnet restore src/TypeCatalogGen

   ## Setup the build target to gather dependency information
   targetFile="$(pwd)/src/Microsoft.PowerShell.SDK/obj/Microsoft.PowerShell.SDK.csproj.TypeCatalog.targets"
   cat > $targetFile <<-"EOF"
<Project>
  <Target Name="_GetDependencies"
          DependsOnTargets="ResolveAssemblyReferencesDesignTime">
    <ItemGroup>
      <_RefAssemblyPath Include="%(_ReferencesFromRAR.ResolvedPath)%3B" Condition=" '%(_ReferencesFromRAR.Type)' == 'assembly' And '%(_ReferencesFromRAR.PackageName)' != 'Microsoft.Management.Infrastructure' " />
    </ItemGroup>
    <WriteLinesToFile File="$(_DependencyFile)" Lines="@(_RefAssemblyPath)" Overwrite="true" />
  </Target>
</Project>
EOF
   dotnet msbuild src/Microsoft.PowerShell.SDK/Microsoft.PowerShell.SDK.csproj /t:_GetDependencies "/property:DesignTimeBuild=true;_DependencyFile=$(pwd)/src/TypeCatalogGen/powershell.inc" /nologo

   ## Generate 'powershell.version'
   git --git-dir="$(pwd)/.git" describe --dirty --abbrev=60 > "$(pwd)/powershell.version"

   ## create the telemetry flag file
   touch "$(pwd)/DELETE_ME_TO_DISABLE_CONSOLEHOST_TELEMETRY"

   ## Generate resource binding C# files
   pushd src/ResGen
   dotnet run
   popd

   ## Generate 'CorePsTypeCatalog.cs'
   pushd src/TypeCatalogGen
   dotnet run ../Microsoft.PowerShell.CoreCLR.AssemblyLoadContext/CorePsTypeCatalog.cs powershell.inc
   popd

   ## Build native component
   pushd src/libpsl-native
   cmake -DCMAKE_BUILD_TYPE=Debug .
   make -j
   make test
   popd

   ## Build powershell core
   rawRid="$(dotnet --info | grep RID)"
   rid=${rawRid##* } # retain the part after the last space
   dotnet publish --configuration Linux src/powershell-unix/ --output bin --runtime $rid

   echo 'You can run powershell from bin/, but some modules that are normally added by the Restore-PSModule step will not be available.'
fi