Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrew Scoggins <anscoggi@microsoft.com>2017-01-21 00:42:44 +0300
committerDrew Scoggins <anscoggi@microsoft.com>2017-01-23 21:09:16 +0300
commitbfb97bc5bb9bb1d19dbdcd4ade8bc814b11e358f (patch)
tree4451f56b215334349d706cb3e7c5fa8285e29467 /netci.groovy
parentf9c6289c5f71c5e435cc67d621dd6256b3aec73b (diff)
Change tar path for Ubuntu Runs
In the recent dev/eng work we changed around the layout of the binaries that we dropped. But we also produce the new runtime folder which has all of the dependencies in one place. For Ubuntu performance runs on coreclr we have used the uploaded zip file as our CoreFX. This change simply removes all of the folders that were previously packaged and now just includes the content of the runtime folder.
Diffstat (limited to 'netci.groovy')
-rw-r--r--netci.groovy9
1 files changed, 2 insertions, 7 deletions
diff --git a/netci.groovy b/netci.groovy
index 05b55f81a2..5f290c22c6 100644
--- a/netci.groovy
+++ b/netci.groovy
@@ -311,13 +311,8 @@ def buildArchConfiguration = ['Debug': 'x86',
def useServerGC = (configurationGroup == 'Release' && isPR) ? 'useServerGC' : ''
shell("HOME=\$WORKSPACE/tempHome ./build.sh -${configurationGroup.toLowerCase()} -framework:${targetGroup} -os:${osGroup}")
shell("HOME=\$WORKSPACE/tempHome ./build-tests.sh -${configurationGroup.toLowerCase()} -framework:${targetGroup} -os:${osGroup} -- ${useServerGC} /p:WithoutCategories=IgnoreForCI")
- // Tar up the appropriate bits. On OSX the tarring is a different syntax for exclusion.
- if (osName == 'OSX') {
- shell("tar -czf bin/build.tar.gz --exclude *.Tests bin/*.${configurationGroup} bin/ref")
- }
- else {
- shell("tar -czf bin/build.tar.gz bin/*.${configurationGroup} bin/ref --exclude=*.Tests")
- }
+ // Tar up the appropriate bits.
+ shell('tar -czf bin/build.tar.gz --directory="bin/runtime/${targetGroup}-${osGroup}-${configurationGroup}-x64" .')
}
}
}