Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2012
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. Ruote.process_definition 'mer_latest_autoqa' do
  2. sequence do
  3. cursor :break_if => '${f:__result__} != true' do
  4.  
  5. set 'debug_trace' => 'True'
  6. set 'debug_dump' => 'True'
  7.  
  8. # Get kickstart
  9. build_ks
  10.  
  11. # Register image
  12. request_image
  13.  
  14. # Build image
  15. build_image
  16.  
  17. update_image_status :status => 'DONE, TESTING'
  18. set "testing" => "yes"
  19. # Test image
  20. test_vm_image
  21.  
  22. end
  23.  
  24. _if :test => '${f:__result__} == true' do
  25. sequence do
  26. qareports
  27. notify_irc :irc_channel => '#mer'
  28. end
  29. end
  30.  
  31. _if :test => '${f:testing} == yes' do
  32. update_image_status :status => 'DONE, TESTED'
  33. end
  34.  
  35. end
  36. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement