Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update jenkins test names #1962

Merged
merged 1 commit into from Mar 2, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions netci.groovy
Expand Up @@ -121,10 +121,11 @@ def CreateXPlatBuildTask = { isPR, buildType, staticBuild, machine, platform, co
def numConcurrentCommand = (platform == "osx" ? "sysctl -n hw.logicalcpu" : "nproc")

config = (configTag == null) ? config : "${configTag}_${config}"
config = staticBuild ? "${config}_static" : config
config = staticBuild ? "static_${config}" : "shared_${config}"
config = customOption ? customOption.replaceAll(/[-]+/, "_") + "_" + config : config

// params: Project, BaseTaskName, IsPullRequest (appends '_prtest')
def jobName = Utilities.getFullJobName(project, config, isPR) + customOption.replaceAll(/[-]+/, "_")
def jobName = Utilities.getFullJobName(project, config, isPR)
Copy link
Contributor

@dilijev dilijev Nov 10, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like this change, it will make the names so that _prtest always appears at the end. Looks like we're running a --no-jit variant on xplat builds. This should probably be added to the build status tables mentioned in the linked issue.


def infoScript = "bash jenkins/get_system_info.sh --${platform}"
def buildFlag = buildType == "release" ? "" : (buildType == "debug" ? "--debug" : "--test-build")
Expand Down