Jenkinsfile: Remove unused copypasta.

This commit is contained in:
/dev/urandom 2016-09-13 02:11:16 +02:00
parent 1d8fb72495
commit 717bb45d21
No known key found for this signature in database
GPG Key ID: 41322B973E0F295E

12
Jenkinsfile vendored
View File

@ -42,18 +42,6 @@ import groovy.transform.Field
"ReleaseStatic"
]
// Run a function for each platform and project to be built
def perConfiguration(suffix, f) {
def executions = [:]
for (int a = 0; a < configurations.size(); a++) {
def configuration = configurations[a]
executions["$configuration$suffix"] = {
f(goos, goarch, targetProject)
}
}
parallel executions
}
// This will build the IW4x client.
// We need a Windows Server with Visual Studio 2015, Premake5 and Git on it.
def doBuild(premakeFlags, configuration) {