File tree 3 files changed +14
-1
lines changed
3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 49
49
enablePublishTestResults : ${{ parameters.enablePublishTestResults }}
50
50
testResultsFormat : ${{ parameters.testResultsFormat }}
51
51
52
+ # Component governance does not work on musl machines
53
+ ${{ if eq(parameters.osSubGroup, '_musl') }} :
54
+ disableComponentGovernance : true
55
+
52
56
workspace :
53
57
clean : all
54
58
enableRichCodeNavigation : ${{ parameters.enableRichCodeNavigation }}
@@ -124,7 +128,7 @@ jobs:
124
128
inputs :
125
129
artifact : Mono_Offsets_${{monoCrossAOTTargetOS}}
126
130
path : ' $(Build.SourcesDirectory)/artifacts/obj/mono/offsetfiles'
127
-
131
+
128
132
- ${{ if eq(parameters.buildingOnSourceBuildImage, true) }} :
129
133
- template : /eng/common/templates/steps/source-build.yml
130
134
parameters :
Original file line number Diff line number Diff line change 65
65
${{ if eq(parameters.osGroup, 'windows') }} :
66
66
agentOs : windows
67
67
68
+ # Component governance does not work on musl machines
69
+ ${{ if eq(parameters.osSubGroup, '_musl') }} :
70
+ disableComponentGovernance : true
71
+
68
72
# Setting this results in the arcade job template including a step
69
73
# that gathers asset manifests and publishes them to pipeline
70
74
# storage. Only relevant for build jobs.
Original file line number Diff line number Diff line change 40
40
condition : and(succeeded(), ${{ parameters.condition }})
41
41
helixRepo : dotnet/runtime
42
42
pool : ${{ parameters.pool }}
43
+
44
+ # Component governance does not work on musl machines
45
+ ${{ if eq(parameters.osSubGroup, '_musl') }} :
46
+ disableComponentGovernance : true
47
+
43
48
variables :
44
49
- _buildScriptFileName : build
45
50
You can’t perform that action at this time.
0 commit comments