File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -53,14 +53,16 @@ jobs:
5353 - name : Build the product (Linux)
5454 env :
5555 ROOTFS_DIR : ${{ matrix.crossrootfs }}
56- run : ./build.sh clr.nativeaotlibs+clr.nativeaotruntime+clr.alljits+clr.tools+libs.native+libs.sfx -c Release -arch ${{ matrix.arch }} /p:CrossBuild=true -ci /p:OfficialBuildId="${{ github.event.inputs.buildid }}" /p:GenerateDocumentationFile=false /p:TreatWarningsAsErrors =false
56+ run : TreatWarningsAsErrors=false ./build.sh clr.nativeaotlibs+clr.nativeaotruntime+clr.alljits+clr.tools+libs.native+libs.sfx -c Release -arch ${{ matrix.arch }} /p:CrossBuild=true -ci /p:OfficialBuildId="${{ github.event.inputs.buildid }}" /p:GenerateDocumentationFile=false
5757 if : ${{ matrix.vm == 'ubuntu-latest' && matrix.os != 'linux-bionic' }}
5858 - name : Build the product (Linux Bionic)
59- run : ./build.sh clr.nativeaotlibs+clr.nativeaotruntime+libs.native+libs.sfx -c Release -os ${{ matrix.os }} -arch ${{ matrix.arch }} -ci /p:OfficialBuildId="${{ github.event.inputs.buildid }}" /p:GenerateDocumentationFile=false /p:TreatWarningsAsErrors =false
59+ run : TreatWarningsAsErrors=false ./build.sh clr.nativeaotlibs+clr.nativeaotruntime+libs.native+libs.sfx -c Release -os ${{ matrix.os }} -arch ${{ matrix.arch }} -ci /p:OfficialBuildId="${{ github.event.inputs.buildid }}" /p:GenerateDocumentationFile=false
6060 if : ${{ matrix.vm == 'ubuntu-latest' && matrix.os == 'linux-bionic' }}
6161 - name : Build the product (Windows)
6262 shell : cmd
63- run : build.cmd clr.nativeaotlibs+clr.nativeaotruntime+clr.alljits+clr.tools+libs.native+libs.sfx -c Release -arch ${{ matrix.arch }} -ci /p:OfficialBuildId="${{ github.event.inputs.buildid }}" /p:GenerateDocumentationFile=false /p:TreatWarningsAsErrors=false
63+ run : |
64+ set TreatWarningsAsErrors=false
65+ build.cmd clr.nativeaotlibs+clr.nativeaotruntime+clr.alljits+clr.tools+libs.native+libs.sfx -c Release -arch ${{ matrix.arch }} -ci /p:OfficialBuildId="${{ github.event.inputs.buildid }}" /p:GenerateDocumentationFile=false
6466 if : ${{ matrix.vm == 'windows-latest' }}
6567
6668 - name : Package compiler
You can’t perform that action at this time.
0 commit comments