You've already forked linux-packaging-mono
Imported Upstream version 5.10.0.47
Former-commit-id: d0813289fa2d35e1f8ed77530acb4fb1df441bc0
This commit is contained in:
parent
88ff76fe28
commit
e46a49ecf1
18
external/corefx/netci.groovy
vendored
18
external/corefx/netci.groovy
vendored
@@ -22,8 +22,6 @@ def osGroupMap = ['Windows 7':'Windows_NT',
|
||||
'Fedora24':'Linux',
|
||||
'OSX10.12':'OSX',
|
||||
'CentOS7.1': 'Linux',
|
||||
'OpenSUSE13.2': 'Linux',
|
||||
'OpenSUSE42.1': 'Linux',
|
||||
'RHEL7.2': 'Linux',
|
||||
'PortableLinux': 'Linux']
|
||||
|
||||
@@ -36,18 +34,16 @@ def osShortName = ['Windows 7' : 'win7',
|
||||
'Fedora24' : 'fedora24',
|
||||
'OSX10.12' : 'osx',
|
||||
'CentOS7.1' : 'centos7.1',
|
||||
'OpenSUSE13.2' : 'opensuse13.2',
|
||||
'OpenSUSE42.1' : 'opensuse42.1',
|
||||
'RHEL7.2' : 'rhel7.2',
|
||||
'PortableLinux' : 'portablelinux']
|
||||
|
||||
def buildArchConfiguration = ['Debug': 'x86',
|
||||
'Release': 'x64']
|
||||
|
||||
def targetGroupOsMapOuterloop = ['netcoreapp': ['Windows 7', 'Windows_NT', 'Ubuntu14.04', 'Ubuntu16.04', 'Ubuntu16.10', 'CentOS7.1', 'OpenSUSE13.2', 'OpenSUSE42.1',
|
||||
def targetGroupOsMapOuterloop = ['netcoreapp': ['Windows 7', 'Windows_NT', 'Ubuntu14.04', 'Ubuntu16.04', 'Ubuntu16.10', 'CentOS7.1',
|
||||
'RHEL7.2', 'Fedora24', 'Debian8.4', 'OSX10.12', 'PortableLinux']]
|
||||
|
||||
def targetGroupOsMapInnerloop = ['netcoreapp': ['Windows_NT', 'Ubuntu14.04', 'Ubuntu16.04', 'Ubuntu16.10', 'CentOS7.1', 'OpenSUSE13.2', 'OpenSUSE42.1',
|
||||
def targetGroupOsMapInnerloop = ['netcoreapp': ['Windows_NT', 'Ubuntu14.04', 'Ubuntu16.04', 'Ubuntu16.10', 'CentOS7.1',
|
||||
'RHEL7.2', 'Fedora24', 'Debian8.4', 'OSX10.12', 'PortableLinux']]
|
||||
|
||||
// **************************
|
||||
@@ -321,11 +317,19 @@ def targetGroupOsMapInnerloop = ['netcoreapp': ['Windows_NT', 'Ubuntu14.04', 'Ub
|
||||
// Add archival for the built binaries
|
||||
def archiveContents = "bin/build.tar.gz"
|
||||
Utilities.addArchival(newJob, archiveContents)
|
||||
|
||||
newJob.with {
|
||||
publishers {
|
||||
azureVMAgentPostBuildAction {
|
||||
agentPostBuildAction('Delete agent after build execution (when idle).')
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Set up triggers
|
||||
if (isPR) {
|
||||
// We run Tizen Debug and Linux Release as default PR builds
|
||||
if ((osName == "Tizen" && configurationGroup == "Debug") || (osName == "Linux" && configurationGroup == "Release") ) {
|
||||
if ((osName == "Tizen" && configurationGroup == "Debug") || (osName == "Linux" && configurationGroup == "Release")) {
|
||||
Utilities.addGithubPRTriggerForBranch(newJob, branch, "${osName} ${abi} ${configurationGroup} Build")
|
||||
}
|
||||
else {
|
||||
|
Reference in New Issue
Block a user