From fc3ffef33865d352e56bd2a263d63c95c02e9205 Mon Sep 17 00:00:00 2001 From: Michael Jenkins Date: Wed, 29 Sep 2021 20:49:49 -0700 Subject: [PATCH] Add files for 02_01 --- 02_01.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 02_01.md diff --git a/02_01.md b/02_01.md new file mode 100644 index 0000000..3df0c88 --- /dev/null +++ b/02_01.md @@ -0,0 +1,23 @@ +# Learning Jenkins, 02-01: Your First Jenkins Job +In this lesson you create your first job. + +Use the console to create a freestyle job with one build step. + +# WINDOWS SYSTEMS +If you are running Jenkins on a Windows system: + +1. Select the `Execute Windows batch command` build step +2. Enter the following for the command: +``` +``` + +# MacOS, Linux, and Docker +If you are running Jenkins on MacOS, Linux, or Docker: + +1. Select the EXECUTE SHELL build step. +2. Enter the following for the command: +``` +echo "Hello, Jenkins" +``` + +