Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Integration States and Steps #68

Merged
merged 3 commits into from
Jul 15, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion XcodeServerSDK/Server Entities/Integration.swift
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,12 @@ public class Integration : XcodeServerEntity {
case Pending = "pending"
case Preparing = "preparing"
case Checkout = "checkout"
case Triggers = "triggers"
case BeforeTriggers = "before-triggers"
case Building = "building"
case Testing = "testing"
case Archiving = "archiving"
case Processing = "processing"
case AfterTriggers = "after-triggers"
case Uploading = "uploading"
case Completed = "completed"
}
Expand All @@ -56,6 +57,7 @@ public class Integration : XcodeServerEntity {
case InternalBuildError = "internal-build-error"
case InternalProcessingError = "internal-processing-error"
case Canceled = "canceled"
case TriggerError = "trigger-error"
}

public required init(json: NSDictionary) {
Expand Down
2 changes: 1 addition & 1 deletion XcodeServerSDK/Server Entities/TestHierarchy.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class TestHierarchy : XcodeServerEntity {

//TODO: come up with useful things to parse
//TODO: add search capabilities, aggregate generation etc

super.init(json: json)
}
}