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

Commit 2d85612

Browse files
Merge pull request #17018 from dotnet/dev/unix_test_workflow
Enable arm32 Ubuntu testing in CI
2 parents 3c3596e + bc559a0 commit 2d85612

File tree

7 files changed

+1569
-1006
lines changed

7 files changed

+1569
-1006
lines changed

build.cmd

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ if defined VS150COMNTOOLS (
2222
set __VSVersion=vs2015
2323
)
2424

25+
:: Work around Jenkins CI + msbuild problem: Jenkins sometimes creates very large environment
26+
:: variables, and msbuild can't handle environment blocks with such large variables. So clear
27+
:: out the variables that might be too large.
28+
set ghprbCommentBody=
29+
2530
:: Note that the msbuild project files (specifically, dir.proj) will use the following variables, if set:
2631
:: __BuildArch -- default: x64
2732
:: __BuildType -- default: Debug

build.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
#!/usr/bin/env bash
22

3+
# Work around Jenkins CI + msbuild problem: Jenkins sometimes creates very large environment
4+
# variables, and msbuild can't handle environment blocks with such large variables. So clear
5+
# out the variables that might be too large.
6+
export ghprbCommentBody=
7+
38
# resolve python-version to use
49
if [ "$PYTHON" == "" ] ; then
510
if ! PYTHON=$(command -v python2.7 || command -v python2 || command -v python)

0 commit comments

Comments
 (0)