mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
9a78fabc89
* feat(golangBuild): add new step for building go * chore(golangBuild): increase test coverage * remove indirect dependencies * cleanup go.sum * chore: remove trailing spaces * chore(golangBuild): cleanup params, add groovy wrapper * fix: update docker options * update docs * update installation according to https://golang.org/doc/go-get-install-deprecation * fix: update installation * update groovy test exclusion * Update vars/golangBuild.groovy Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com> * update branch * address PR feedback * fix compilation error Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com>
10 lines
270 B
Groovy
10 lines
270 B
Groovy
import groovy.transform.Field
|
|
|
|
@Field String STEP_NAME = getClass().getName()
|
|
@Field String METADATA_FILE = "metadata/golangBuild.yaml"
|
|
|
|
void call(Map parameters = [:]) {
|
|
List credentials = []
|
|
piperExecuteBin(parameters, STEP_NAME, METADATA_FILE, credentials)
|
|
}
|