summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorHyeongseok Oh <hseok82.oh@samsung.com>2017-04-07 01:23:13 +0900
committerGaurav Khanna <gkhanna@microsoft.com>2017-04-06 09:23:13 -0700
commit94c9d782c39b486cb8e4f1a315115ac19450ce2d (patch)
tree4f05bb5c330eff656237dfb20473f39c61d28ec2 /netci.groovy
parentcd67f7ada2e2796472a0ba32d336744eceb67345 (diff)
downloadcoreclr-94c9d782c39b486cb8e4f1a315115ac19450ce2d.tar.gz
coreclr-94c9d782c39b486cb8e4f1a315115ac19450ce2d.tar.bz2
coreclr-94c9d782c39b486cb8e4f1a315115ac19450ce2d.zip
[x86/Linux] PAL test in CI build (#10688)
* [x86/Linux] PAL test in CI build Add PAL test in CI x86/Linux build Change docker image: including rootfs * Fix netci.groovy Add PAL test's result
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy3
1 files changed, 2 insertions, 1 deletions
diff --git a/netci.groovy b/netci.groovy
index 15092ed1da..2c269e7d4a 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -1534,8 +1534,9 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
case 'x64':
case 'x86':
if (architecture == 'x86' && os == 'Ubuntu') {
- // build only, not test yet
+ // build and PAL test
buildCommands += "./tests/scripts/x86_ci_script.sh --buildConfig=${lowerConfiguration}"
+ Utilities.addXUnitDotNETResults(newJob, '**/pal_tests.xml')
break;
}