From f586619fad8caefeeb0343e60bb61f923d1effd6 Mon Sep 17 00:00:00 2001 From: Benjamin Muschko Date: Mon, 22 Jul 2019 06:16:13 +0200 Subject: [PATCH] Write up description and add images --- 12-basic-jenkinsfile.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/12-basic-jenkinsfile.md b/12-basic-jenkinsfile.md index 3d5a970..17881d8 100644 --- a/12-basic-jenkinsfile.md +++ b/12-basic-jenkinsfile.md @@ -9,10 +9,10 @@ 5. Install the Jenkins Go plugin. 6. Configure the latest Go runtime as global tool. 7. Enhance the `Jenkinsfile` based on the following requirements. The Jenkinsfile should use the declarative syntax. - 7.1 The job can run on all agents. - 7.2 The job sets the environment variable `GO111MODULES=on`. - 7.3 The job uses the Go runtime from the global tool definition. - 7.4 The job specifies one build stage named "Build". The build stage executes the shell command `go build`. + * The job can run on all agents. + * The job sets the environment variable `GO111MODULES=on`. + * The job uses the Go runtime from the global tool definition. + * The job specifies one build stage named "Build". The build stage executes the shell command `go build`.
Show Solution