Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit cf9a693

Browse files
authored
Hotfix for the Alpine CI issue (#25806)
The Alpine CI is failing due to an old version of dotnet host package specified in the dependencies.props file. There are no Alpine packages for that version. However, updating that version causes Invariant.Tests tests to fail for an unclear reason. So I am making this change that disables building tests for Alpine in the CI. That means we will still build both native and managed code of corefx. This change is temporary until the Invariant test issue is understood and fixed.
1 parent ec6014e commit cf9a693

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

buildpipeline/alpine.3.6.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ simpleDockerNode('microsoft/dotnet-buildtools-prereqs:alpine-3.6-3148f11-2017111
2424
sh "./build-managed.sh -runtimeos=alpine.3.6 -- /t:GenerateVersionSourceFile /p:GenerateVersionSourceFile=true /p:PortableBuild=false"
2525
}
2626
stage ('Sync') {
27-
sh "./sync.sh -p -runtimeos=alpine.3.6 -- /p:ArchGroup=x64 /p:PortableBuild=false"
27+
sh "./sync.sh -p -runtimeos=alpine.3.6 -BuildTests=false -- /p:ArchGroup=x64 /p:PortableBuild=false"
2828
}
2929
stage ('Build Product') {
30-
sh "./build.sh -buildArch=x64 -runtimeos=alpine.3.6 -${params.CGroup} -- /p:PortableBuild=false"
30+
sh "./build.sh -buildArch=x64 -runtimeos=alpine.3.6 -${params.CGroup} -BuildTests=false -- /p:PortableBuild=false"
3131
}
3232
stage ('Build Tests') {
3333
def additionalArgs = ''

0 commit comments

Comments
 (0)