File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,9 @@ build_vmr_stage1() {
124
124
-v detailed
125
125
/p:PortableBuild=true
126
126
)
127
- ./build.sh " ${args[@]} "
127
+ # CI=true interferes with dotnet/aspire's build
128
+ # see https://github.com/dotnet/dotnet/blob/v9.0.0-rc.1.24431.7/src/aspire/Directory.Build.targets#L18
129
+ CI= ./build.sh " ${args[@]} "
128
130
129
131
_detect_built_version artifacts/assets/Release
130
132
mv artifacts/assets/Release/* .tar.* " $OUT_DIR " /
@@ -211,7 +213,9 @@ build_vmr_stage2() {
211
213
/p:PortableRid=" $TARGET_RID "
212
214
/p:TargetArchitecture=" $TARGET_ARCH "
213
215
)
214
- ./build.sh " ${args[@]} "
216
+ # CI=true interferes with dotnet/aspire's build
217
+ # see https://github.com/dotnet/dotnet/blob/v9.0.0-rc.1.24431.7/src/aspire/Directory.Build.targets#L18
218
+ CI= ./build.sh " ${args[@]} "
215
219
216
220
mv artifacts/assets/Release/* .tar.* " $OUT_DIR " /
217
221
You can’t perform that action at this time.
0 commit comments