# File lib/kwala/project_builder_utils.rb, line 154
  def ProjectBuilderUtils.build_actions(action_instances, context)
    success = Array.new

    action_instances.each do |action|  
      begin
        action.build_action(context)
        success << action
      rescue KwalaAbortBuildException => err        
        # We want to failed action, but stop the others
        success << action
        break
      end
    end    

    success
  end