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

Adding an entry for 2.0.0 for WcfPRService serial numbers #2616

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions netci.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -58,16 +58,20 @@ class WcfUtilities

// workaround after branchifying - each branch independently runs this file hence our serial
// numbers will overlap on different branches
// Strictly speaking this file only needs to specify the starting point for the serial numbers of the branch it is in
// We are showing the starting points of other branches for the sake of clarity
if (branch.toLowerCase() == "release/1.0.0") {
currentWcfPRService = wcfPRServiceCount + 100
} else if (branch.toLowerCase() == "release/1.1.0") {
currentWcfPRService = wcfPRServiceCount + 150
} else if (branch.toLowerCase() == "release/2.1.0") {
} else if (branch.toLowerCase() == "release/2.0.0") {
currentWcfPRService = wcfPRServiceCount + 200
} else if (branch.toLowerCase() == "release/uwp6.0") {
} else if (branch.toLowerCase() == "release/2.1.0") {
currentWcfPRService = wcfPRServiceCount + 250
} else if (branch.toLowerCase() == "release/uwp6.1") {
} else if (branch.toLowerCase() == "release/uwp6.0") {
currentWcfPRService = wcfPRServiceCount + 300
} else if (branch.toLowerCase() == "release/uwp6.1") {
currentWcfPRService = wcfPRServiceCount + 350
}

job.with {
Expand Down