From Fedora Project Wiki

No edit summary
No edit summary
Line 5: Line 5:
# Ensure that the Jenkins is running
# Ensure that the Jenkins is running
|actions=
|actions=
# open http://localhost:8080/jenkins in your web browser
# open http://localhost:8080 in your web browser
# click "New item"
# click "New item"
# enter name of the item: "project1"
# enter name for a new item: "project1"
# choose "Freestyle project" type
# choose "Freestyle project" type
# click "OK"
# click "OK"
# in "Build" section, choose "Execute Shell" from "Add build step" drop down meno
# in "Build" section, choose "Execute Shell" from "Add build step" drop-down menu
# paste 'echo "Build successful!"' into a newly created textarea
# paste 'echo "Build successful!"' into a newly created textarea
# click "Save"
# click "Save"

Revision as of 04:57, 30 September 2014

Description

Building freestyle project in Jenkins.

Setup

  1. Ensure that the Jenkins is running

How to test

  1. open http://localhost:8080 in your web browser
  2. click "New item"
  3. enter name for a new item: "project1"
  4. choose "Freestyle project" type
  5. click "OK"
  6. in "Build" section, choose "Execute Shell" from "Add build step" drop-down menu
  7. paste 'echo "Build successful!"' into a newly created textarea
  8. click "Save"
  9. click "Build Now"

Expected Results

  1. you should see a new entry in "Build history"
  2. the ball representing status of the last build should be blue
    • blue means success in Jenkins
  3. clicking on the ball should show console output from given build:
Started by user anonymous
Building in workspace /var/lib/jenkins/jobs/project1/workspace
[workspace] $ /bin/sh -xe /tmp/hudson5548796080979748704.sh
+ echo 'Build Successful!'
Build Successful!
Finished: SUCCESS